forked from rawify/BitSet.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 797 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
{
"name": "bitset.js",
"title": "BitSet.js",
"version": "1.0.1",
"homepage": "http://www.xarg.org/2014/03/javascript-bit-array/",
"description": "A bit vector implementation",
"keywords": ["math", "bit", "twiddle"],
"author": "Robert Eisele <[email protected]>",
"main": "bitset",
"licenses": [{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}, {
"type": "GPL",
"url": "http://www.opensource.org/licenses/GPL-2.0"
}],
"repository": {
"type": "git",
"url": "http://github.com/infusion/bitset.js.git"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha tests/*.js"
},
"devDependencies": {
"mocha": "*"
}
}