forked from kawanet/msgpack-lite
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 907 Bytes
/
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
{
"name": "tiny-msgpack",
"version": "2.2.0",
"description": "A minimalistic MessagePack encoder and decoder for JavaScript.",
"main": "lib/index.js",
"browser": "lib/browser.js",
"scripts": {
"test": "$(npm bin)/mocha",
"zuul": "zuul -- test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JoshuaWise/tiny-msgpack.git"
},
"keywords": [
"binary",
"json",
"msgpack",
"messagepack",
"serialize",
"encode",
"decode"
],
"author": "Joshua Wise <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoshuaWise/tiny-msgpack/issues"
},
"homepage": "https://github.com/JoshuaWise/tiny-msgpack#readme",
"devDependencies": {
"benchmark": "^2.1.2",
"chai": "^3.5.0",
"cli-color": "^1.1.0",
"mocha": "^3.1.2",
"msgpack": "^1.0.2",
"msgpack-lite": "^0.1.26"
}
}