-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
68 lines (66 loc) · 2.56 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
{
"name": "packet",
"version": "1.0.0-alpha.4",
"description":
"Pure JavaScript evented binary parsers and serializers for Node.js.",
"keywords":
[
"packet", "pack", "binary", "network", "structure",
"async", "asynchronous", "javascript"
],
"author": "Alan Gutierrez <[email protected]>",
"contributors":
[{
"name": "J. Ryan Stinnett",
"email": "[email protected]"
},
{
"name": "Ben Hockey",
"email": "[email protected]"
},
{
"name": "Greg Ose",
"email": "[email protected]",
"web": "http://nullmethod.com/"
},
{
"name": "Aaron Qian",
"email": "[email protected]"
},
{
"name": "Demarius Chrite",
"email": "[email protected]",
"web": "https://github.com/demarius"
}],
"homepage": "https://github.com/bigeasy/packet",
"bugs": "https://github.com/bigeasy/packet/issues",
"license": "MIT",
"repository":
{
"type": "git",
"url": "bigeasy/packet"
},
"dependencies":
{
"arguable": "13.0.0-alpha.7",
"fast-deep-equal": "3.1.3",
"programmatic": "2.0.0-alpha.12",
"staccato": "13.0.0-alpha.13"
},
"devDependencies":
{
"extant": "^2.0.0-alpha.5",
"ip": "1.1.5",
"mqtt-packet": "7.1.2",
"proof": "^9.0.3"
},
"main": "packet.js",
"scripts":
{
"test": "proof -n --allow-natives-syntax test/*/*.t.js"
},
"nyc":
{
"exclude": ["test/**","!test/generated","inlines.js"]
}
}