-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
52 lines (52 loc) · 1.24 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
49
50
51
52
{
"name": "msgpack5",
"version": "6.0.2",
"description": "A msgpack v5 implementation for node.js and the browser, with extension points",
"main": "index.js",
"scripts": {
"test": "standard && tape test/* | tap-mocha-reporter dot",
"build": "npm run browserify && npm run dist",
"browserify": "browserify index.js -o dist/msgpack5.js -s msgpack5",
"dist": "uglifyjs dist/msgpack5.js -o dist/msgpack5.min.js"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/mcollina/msgpack5.git"
},
"keywords": [
"msgpack",
"extension",
"v5",
"MessagePack",
"ext"
],
"author": "Matteo collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/msgpack5/issues"
},
"homepage": "https://github.com/mcollina/msgpack5",
"devDependencies": {
"browserify": "^17.0.0",
"memdb": "^1.3.1",
"pre-commit": "^1.2.2",
"standard": "^16.0.0",
"tap-mocha-reporter": "^5.0.0",
"tape": "^5.0.0",
"uglify-js": "^3.4.9"
},
"standard": {
"ignore": [
"dist/"
]
},
"dependencies": {
"bl": "^5.0.0",
"inherits": "^2.0.3",
"readable-stream": "^3.0.0",
"safe-buffer": "^5.1.2"
}
}