forked from msgpack/msgpack-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.62 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
78
79
80
81
82
83
{
"name": "msgpack",
"description": "A space-efficient object serialization library for node.js",
"version": "1.0.3",
"homepage": "https://github.com/msgpack/msgpack-node",
"contributors": [
{
"name": "Amos Barreto",
"url": "https://github.com/squamos"
},
{
"name": "Peter Griess",
"url": "https://github.com/pgriess",
"email": "[email protected]"
},
{
"name": "Maxwell Krohn",
"url": "https://github.com/maxtaco"
},
{
"name": "Jaye Marshall",
"url": "https://github.com/jmars"
},
{
"name": "matthiasg",
"url": "https://github.com/matthiasg"
},
{
"name": "Christopher Mooney",
"url": "https://github.com/godsflaw",
"email": "[email protected]"
},
{
"name": "Michael Phan-Ba",
"url": "https://github.com/mikepb"
},
{
"name": "Bob Potter",
"url": "https://github.com/bpot"
},
{
"name": "rashfael",
"url": "https://github.com/rashfael"
},
{
"name": "Tom Taylor",
"email": "[email protected]",
"url": "https://github.com/tomtaylor"
},
{
"name": "Brian White",
"url": "https://github.com/mscdex"
},
{
"name": "Keiji Yoshimi",
"url": "https://github.com/walf443"
}
],
"repository": {
"type": "git",
"url": "https://github.com/msgpack/msgpack-node.git"
},
"main": "./lib/msgpack",
"directories": {
"lib": "lib"
},
"dependencies": {
"nan": "^2.15.0"
},
"devDependencies": {
"nodeunit": "https://github.com/godsflaw/nodeunit/archive/master.tar.gz"
},
"engines": {
"node": ">=0.12.7"
},
"bin": {
"json2msgpack": "./bin/json2msgpack",
"msgpack2json": "./bin/msgpack2json"
},
"scripts": {
"test": "./run_tests"
}
}