-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.22 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.22 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
{
"name": "typedfastbitset",
"description": "Speed-optimized BitSet implementation for modern browsers and JavaScript engines, using typed arrays",
"keywords": [
"bitmap",
"bitset",
"performance"
],
"version": "0.8.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lemire/TypedFastBitSet.js.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:package": "tsc -p tsconfig.build.json --outDir lib",
"check:types": "tsc",
"test": "node --expose-gc ./node_modules/jest/bin/jest",
"release": "npm run build:package && npm run test && release-it",
"benchmark": "node benchmark/test.js",
"benchmark:ablation": "node benchmark/ablation.js"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lemire/TypedFastBitSet.js/issues"
},
"homepage": "https://github.com/lemire/TypedFastBitSet.js#readme",
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.4.3",
"release-it": "^15.6.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.7.0"
},
"author": "Daniel Lemire <lemire@gmail.com> (http://lemire.me/en/)"
}