forked from darrachequesne/notepack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "notepack.io",
"version": "2.1.2",
"description": "A fast Node.js implementation of the latest MessagePack spec",
"main": "lib/index.js",
"files": [
"lib/",
"browser/"
],
"repository": {
"type": "git",
"url": "https://github.com/darrachequesne/notepack.git"
},
"author": "Ben Shepheard <ben@coinative.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/darrachequesne/notepack/issues"
},
"homepage": "https://github.com/coinative/notepack",
"devDependencies": {
"benchmark": "^2.1.2",
"benchtable": "^0.1.0",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"mocha": "^3.2.0",
"msgpack-js": "^0.3.0",
"msgpack-lite": "^0.1.26",
"webpack": "^1.14.0"
},
"scripts": {
"test": "npm run lint && istanbul cover _mocha -r test/support/env test/",
"build": "rm -rf dist && webpack --config support/webpack.config.js",
"lint": "jshint lib/*.js browser/*.js test/*.js"
},
"browser": {
"./lib/encode.js": "./browser/encode.js",
"./lib/decode.js": "./browser/decode.js"
}
}