-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (35 loc) · 844 Bytes
/
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
{
"name": "count-min-sketch-ts",
"version": "2.0.1",
"description": "Count-Min-Sketch Data Structure in TS",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/a5node/count-min-sketch-ts.git"
},
"keywords": [
"count-min-sketch",
"typescript"
],
"author": "a5node",
"license": "MIT",
"bugs": {
"url": "https://github.com/a5node/count-min-sketch-ts/issues"
},
"homepage": "https://github.com/a5node/count-min-sketch-ts#readme",
"scripts": {
"build": "tsc -p ."
},
"devDependencies": {
"@babel/helper-hoist-variables": "^7.18.6",
"@jest/types": "^29.2.1",
"@types/node": "^18.11.9",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16.17.1",
"npm": ">=8.15.0"
}
}