-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 964 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
37
38
39
{
"name": "binary-fuse-filter",
"version": "1.0.0",
"description": "JavaScript-TypeScript module implementing binary fuse 8 filter for BigInt",
"homepage": "https://github.com/bogwi/binary-fuse-filter",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "node --test",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"bigint",
"binary fuse filter",
"probabilistic data-structures"
],
"author": {
"name": "Dan Wi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bogwi/binary-fuse-filter.git"
},
"bugs": {
"url": "https://github.com/bogwi/binary-fuse-filter.git/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"typescript": "^5.4.3"
},
"files": [
"lib/**/*"
]
}