-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 850 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
{
"name": "bit-converter",
"version": "1.0.0",
"description": "Convert array to byte, short or integer, API is based on C#",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --check-leaks",
"test-watch": "./node_modules/.bin/mocha --check-leaks -w",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec && ./node_modules/.bin/codecov",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha"
},
"keywords": [
"convert",
"bit converter",
"byte converter",
"short",
"byte"
],
"repository": {
"type": "git",
"url": "https://github.com/sweetim/bit-converter"
},
"engines": {
"node": ">=4.0.0"
},
"author": "Tim",
"license": "ISC",
"devDependencies": {
"codecov": "^3.6.5",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}