-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 789 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 789 Bytes
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
{
"author": "Tim Caswell <tim@creationix.com>",
"name": "msgpack-js-v5",
"description": "msgpack encoder and decoder in pure javascript based on creationix/msgpack-js updated to match the new v5 specification with string support.",
"version": "0.3.0-v5",
"repository": {
"type": "git",
"url": "git://github.com/chakrit/msgpack-js.git"
},
"engines": {
"node" : ">0.7.0"
},
"main": "msgpack.js",
"dependencies": {
"bops": "~1.0.0"
},
"devDependencies": {
"tape": "~1.0.2"
},
"scripts": {
"test": "node test.js"
},
"testling": {
"files": "test.js",
"browsers": [
"ie/9..latest",
"firefox/19..latest",
"chrome/25..latest",
"safari/latest",
"iphone/6",
"ipad/6"
]
},
"license": "MIT"
}