-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "typedfastbitset",
"description": "Speed-optimized BitSet implementation for modern browsers and JavaScript engines, using typed arrays",
"keywords": [
"bitmap",
"bitset",
"performance"
],
"version": "0.4.2",
"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",
"check:types": "tsc",
"test": "node --expose-gc ./node_modules/jest/bin/jest",
"release": "npm run build:package && npm run test && release-it"
},
"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.4.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"release-it": "^15.6.0"
},
"author": "Daniel Lemire <[email protected]> (http://lemire.me/en/)"
}