-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "quick-median",
"version": "1.0.8",
"description": "Lightning-fast median finding with O(n) average time complexity using Floyd-Rivest algorithm",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"test": "mocha",
"benchmark": "node benchmark/benchmark.js",
"minify": "terser dist/index.js -o dist/index.min.js",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && npm run rename:esm",
"build": "npm run build:cjs && npm run build:esm",
"clean": "rimraf dist",
"rename:esm": "/bin/zsh ./scripts/fix-mjs.sh",
"prepack": "npm run clean && npm run build"
},
"keywords": [
"median",
"algorithm",
"floyd-rivest",
"statistics",
"performance",
"quickselect"
],
"author": "Vincentius Roger Kuswara <vincentiusrogerk@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vinroger/quick-median.git"
},
"homepage": "https://github.com/vinroger/quick-median#readme",
"bugs": {
"url": "https://github.com/vinroger/quick-median/issues"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^5.1.1",
"compute-median": "^2.0.0",
"fast-median": "^1.1.0",
"faster-median": "^1.0.0",
"median": "^0.0.2",
"median-average": "^1.0.1",
"median-quickselect": "^1.0.1",
"ml-array-median": "^1.1.6",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"stats-median": "^1.0.1",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"quick-median": "^1.0.8"
}
}