-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "sparstogram",
"version": "0.8.2",
"target": "module",
"description": "Sparse, adaptive, scalable histogram in TypeScript",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"clean": "rm -rf dist/",
"doc": "npx typedoc -out docs src",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest .",
"prepublish": "npm run build && npm run doc"
},
"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",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.4"
},
"dependencies": {
"digitree": "^1.3.2"
}
}