-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 KB
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
{
"name": "sparstogram",
"version": "1.1.0",
"description": "Sparse, adaptive, scalable histogram in TypeScript",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"doc": "npx typedoc -out docs src",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "node --import tsx node_modules/mocha/bin/mocha.js src/**/*.test.ts --colors --bail",
"lint": "eslint src/",
"bench": "node --expose-gc --import tsx src/sparstogram.bench.ts",
"bump": "bumpp --execute=\"npm test && npm run lint && npm run build\"",
"pub": "node scripts/publish.cjs",
"prepublishOnly": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Digithought/Sparstogram.git"
},
"homepage": "https://github.com/Digithought/Sparstogram",
"bugs": {
"url": "https://github.com/Digithought/Sparstogram/issues"
},
"keywords": [
"histogram",
"sparse",
"t-digest",
"q-digest",
"statistics",
"financial",
"median"
],
"author": "Nathan T. Allan",
"license": "MIT",
"engines": {
"node": ">=16.11"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"bumpp": "^10.4.0",
"chai": "^5.2.0",
"eslint": "^9.27.0",
"mocha": "^11.4.0",
"rimraf": "^6.0.1",
"tinybench": "^6.0.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
},
"dependencies": {
"digitree": "^1.4.0"
}
}