forked from kawanet/msgpack-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "msgpack-lite",
"description": "Fast Pure JavaScript MessagePack Encoder and Decoder",
"version": "0.1.25",
"author": "@kawanet",
"bin": {
"msgpack": "./bin/msgpack"
},
"browser": "lib/browser.js",
"bugs": {
"url": "https://github.com/kawanet/msgpack-lite/issues"
},
"contributors": [
"Christopher Vermilion <chris@figlyinc.com>",
"Frederik Dudzik <4004blog@gmail.com>",
"Garrett Serack <gserack@gmail.com>",
"Jesse Armand <jesse@jessearmand.com>",
"Joshua Wise <josh@joshuawise.ninja>"
],
"dependencies": {
"event-lite": "^0.1.1",
"ieee754": "^1.1.6",
"int64-buffer": "^0.1.7",
"isarray": "^1.0.0"
},
"devDependencies": {
"async": "^1.5.2",
"browserify": "^13.0.1",
"concat-stream": "^1.5.1",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"msgpack.codec": "git+https://github.com/kawanet/msgpack-javascript.git#msgpack.codec",
"uglify-js": "^2.7.0",
"zuul": "^3.10.1"
},
"homepage": "https://github.com/kawanet/msgpack-lite",
"jshintConfig": {
"es3": true,
"globals": {
"JSON": true,
"Symbol": true,
"Map": true,
"window": true
},
"mocha": true,
"node": true,
"undef": true
},
"keywords": [
"arraybuffer",
"buffer",
"fluentd",
"messagepack",
"msgpack",
"serialize",
"stream",
"typedarray",
"uint8array"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/kawanet/msgpack-lite.git"
},
"scripts": {
"benchmark": "./lib/benchmark.js",
"benchmark-lite": "./lib/benchmark.js msgpack-lite",
"benchmark-stream": "./lib/benchmark-stream.js",
"fixpack": "fixpack",
"make": "make",
"size": "make clean dist/msgpack.min.js && gzip -9fkv dist/msgpack.min.js && ls -l dist",
"test": "make test",
"test-browser-local": "make test-browser-local"
}
}