-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 888 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
39
{
"name" : "binary",
"version" : "0.2.1",
"description" : "Unpack multibyte binary values from buffers",
"main" : "./index.js",
"repository" : {
"type" : "git",
"url" : "http://github.com/substack/node-binary.git"
},
"keywords": [
"binary",
"decode",
"endian",
"unpack",
"signed",
"unsigned"
],
"author" : {
"name" : "James Halliday",
"email" : "[email protected]",
"url" : "http://substack.net"
},
"dependencies" : {
"chainsaw" : ">=0.0.7 <0.1",
"put" : ">=0.0.5 <0.1",
"buffers" : ">=0.0.4 <0.1"
},
"devDependencies" : {
"seq" : ">=0.2.5 <0.3",
"expresso" : "=0.7.x"
},
"scripts" : {
"test" : "expresso"
},
"license" : "MIT/X11",
"engine" : {
"node" : ">=0.4.0"
}
}