forked from hypergeometric/notepack
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "notepack.io",
"version": "3.0.1",
"description": "A fast Node.js implementation of the latest MessagePack spec",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"browser/",
"dist/*.js"
],
"repository": {
"type": "git",
"url": "https://github.com/darrachequesne/notepack.git"
},
"author": "Damien Arrachequesne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/darrachequesne/notepack/issues"
},
"homepage": "https://github.com/darrachequesne/notepack",
"devDependencies": {
"@msgpack/msgpack": "^2.8.0",
"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",
"msgpackr": "^1.7.2",
"uglify-js": "^3.4.9"
},
"scripts": {
"test": "npm run lint && istanbul cover _mocha -r test/support/env test/",
"build": "uglifyjs --compress --mangle --mangle-props keep_quoted -- dist/notepack.js > dist/notepack.min.js",
"lint": "jshint lib/*.js browser/*.js test/*.js"
},
"browser": {
"./lib/encode.js": "./browser/encode.js",
"./lib/decode.js": "./browser/decode.js"
},
"keywords": [
"msgpack",
"MessagePack"
]
}