-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 984 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
{
"name": "buffer-pack",
"version": "0.0.3",
"description": "Define a format to pack and unpack objects to/from buffers",
"main": "./lib/index.js",
"contributors": [
"Ben Shepheard <[email protected]>",
"Dan Howitt <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/coinative/buffer-pack.git"
},
"bugs": {
"url": "https://github.com/coinative/buffer-pack/issues"
},
"homepage": "https://github.com/coinative/buffer-pack",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha -r ./test/support/env -R dot ./test",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -r ./test/support/env -R dot ./test",
"test-travis": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -r ./test/support/env -R spec ./test"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.2.11",
"mocha": "^1.20.1"
}
}