-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
77 lines (77 loc) · 1.94 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
77
{
"name": "msgpack-lite",
"description": "Fast Pure JavaScript MessagePack Encoder and Decoder",
"version": "0.1.26",
"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>",
"Maciej Hirsz <maciej.hirsz@gmail.com>"
],
"dependencies": {
"event-lite": "^0.1.1",
"ieee754": "^1.1.8",
"int64-buffer": "^0.1.9",
"isarray": "^1.0.0"
},
"devDependencies": {
"async": "^2.1.1",
"browserify": "^13.1.0",
"concat-stream": "^1.5.2",
"jshint": "^2.9.3",
"mocha": "^3.1.2",
"msgpack.codec": "git+https://github.com/kawanet/msgpack-javascript.git#msgpack.codec",
"uglify-js": "^2.7.3",
"zuul": "^3.11.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"
}
}