-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "msgpack-lite",
"description": "Fast Pure JavaScript MessagePack Encoder and Decoder",
"version": "0.2.2",
"author": "@kawanet",
"allowScripts": {
"msgpackr-extract": false
},
"bin": {
"msgpack": "./bin/msgpack"
},
"browser": "lib/browser.js",
"bugs": {
"url": "https://github.com/kawanet/msgpack-lite/issues"
},
"contributors": [
"Christopher Vermilion <[email protected]>",
"Frederik Dudzik <[email protected]>",
"Garrett Serack <[email protected]>",
"Jesse Armand <[email protected]>",
"Joshua Mouch <[email protected]>",
"Joshua Wise <[email protected]>",
"Maciej Hirsz <[email protected]>",
"Rafał Michalski <[email protected]>",
"Yarchik <[email protected]>"
],
"dependencies": {
"event-lite": "^1.0.0",
"ieee754": "^1.2.1",
"int64-buffer": "^1.1.1",
"isarray": "^2.0.5"
},
"devDependencies": {
"@msgpack/msgpack": "^3.1.3",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-multi-entry": "^7.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"assert": "^2.1.0",
"browserify": "^17.0.1",
"concat-stream": "^2.0.0",
"jshint": "^2.13.6",
"mocha": "^11.8.0",
"msgpack5": "^6.0.2",
"msgpackr": "^2.1.0",
"notepack.io": "^3.0.1",
"rollup": "^4.63.1",
"uglify-js": "^3.19.3"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.18.0",
"onFail": "warn"
}
},
"files": [
"LICENSE",
"README.md",
"bin/msgpack",
"dist/msgpack.min.js",
"global.js",
"index.js",
"lib/*.js"
],
"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",
"overrides": {
"buffer": "4.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kawanet/msgpack-lite.git"
},
"scripts": {
"fixpack": "fixpack",
"make": "make",
"size": "make clean dist/msgpack.min.js && gzip -9fkv dist/msgpack.min.js && ls -l dist",
"test": "make test"
},
"type": "commonjs"
}