-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
30 lines (30 loc) · 1 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
{
"name": "notepack",
"version": "0.0.2",
"description": "A fast Node.js implementation of the latest MessagePack spec",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/coinative/notepack.git"
},
"author": "Ben Shepheard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/coinative/notepack/issues"
},
"homepage": "https://github.com/coinative/notepack",
"devDependencies": {
"benchmark": "^1.0.0",
"benchtable": "0.0.2",
"chai": "^1.9.1",
"istanbul": "^0.2.10",
"mocha": "^1.18.2",
"msgpack": "^0.2.3",
"msgpack-js": "^0.3.0"
},
"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"
}
}