forked from lemire/FastBitSet.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1001 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": "fastbitset",
"description": "Speed-optimized BitSet implementation for modern browsers and JavaScript engines",
"keywords": [
"bitmap",
"bitset",
"performance"
],
"version": "0.4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/lemire/FastBitSet.js.git"
},
"main": "FastBitSet.js",
"scripts": {
"test": "mocha unit/basictests.js",
"benchmark": "nodejs benchmark/test.js"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lemire/FastBitSet.js/issues"
},
"homepage": "https://github.com/lemire/FastBitSet.js#readme",
"dependencies": {
"bl": "^4.0.3",
"minimist": "^1.2.5"
},
"devDependencies": {
"benchmark": "~1.0.0",
"bitset": "^5.1.1",
"bitset.js": "^5.0.0",
"fast-bitset": "^1.3.2",
"microtime": "^3.0.0",
"mocha": "^8.2.1",
"roaring": "^1.0.6",
"typedfastbitset": "0.0.1"
},
"author": "Daniel Lemire <[email protected]> (http://lemire.me/en/)"
}