forked from mcollina/msgpack5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.66 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "zeronet-msgpack",
"version": "3.6.0",
"description": "A zeronet compatible msgpack v5 implementation for node.js and the browser, with extension points",
"main": "index.js",
"scripts": {
"test": "standard && tape test/* | faucet",
"build": "npm run browserify && npm run dist",
"browserify": "node_modules/.bin/browserify index.js -o dist/msgpack5.js -s msgpack5",
"dist": "node_modules/.bin/uglifyjs dist/msgpack5.js -o dist/msgpack5.min.js",
"test-browser": "browserify test/* | testling -u"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/ZeroNetJS/zeronet-msgpack.git"
},
"keywords": [
"msgpack",
"extension",
"v5",
"MessagePack",
"ext"
],
"author": "Matteo collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZeroNetJS/zeronet-msgpack/issues"
},
"homepage": "https://github.com/ZeroNetJS/zeronet-msgpack",
"devDependencies": {
"browserify": "^14.0.0",
"faucet": "0.0.1",
"jshint": "^2.9.5",
"memdb": "^1.3.1",
"pre-commit": "^1.2.2",
"standard": "^10.0.3",
"tape": "^4.8.0",
"testling": "^1.7.1",
"uglify-js": "^3.0.28"
},
"standard": {
"ignore": [
"dist/"
]
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
},
"dependencies": {
"bl": "^1.2.1",
"inherits": "^2.0.3",
"readable-stream": "^2.3.3",
"safe-buffer": "^5.1.1"
}
}