-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"author": "Jonathan Barronville <[email protected]>",
"bugs": "https://github.com/jonathanmarvens/bitball/issues",
"contributors": [],
"dependencies": {
"source-map-support": "^0.4.0"
},
"description": "A simple, efficient, and easy-to-use Node.js module for working with individual bits.",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-strict-mode": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-tape-runner": "^1.3.0",
"eslint": "^1.10.3",
"tape": "^4.2.2"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/jonathanmarvens/bitball",
"keywords": [
"array",
"bit",
"bitarray",
"bitmap",
"bits",
"bitset",
"bitvector",
"bytes",
"map",
"set",
"vector"
],
"license": "Apache-2.0",
"main": "src/index.js",
"name": "bitball",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jonathanmarvens/bitball.git"
},
"scripts": {
"build": "npm run build-src",
"build-docs": "",
"build-src": "babel -d src es6_src",
"build-src-watch": "babel -d src -w es6_src",
"lint": "eslint --debug es6_src",
"prepublish": "npm run build",
"test": "babel-tape-runner test.js"
},
"version": "1.0.1"
}