This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
forked from JustinTulloss/zeromq.node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "zmq",
"version": "2.17.0",
"description": "Bindings for node.js and io.js to ZeroMQ",
"main": "index",
"repository": {
"type": "git",
"url": "http://github.com/JustinTulloss/zeromq.node.git"
},
"dependencies": {
"bindings": "~1.2.1",
"nan": "^2.4.0"
},
"devDependencies": {
"mocha": "^3.1.0",
"semver": "^5.3.0",
"should": "^11.1.0"
},
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "mocha --expose-gc --slow 300"
},
"keywords": [
"zeromq",
"zmq",
"0mq",
"ømq",
"libzmq",
"native",
"binding",
"addon"
],
"license": "MIT",
"author": "Justin Tulloss <[email protected]> (http://justin.harmonize.fm)",
"contributors": [
"Justin Tulloss <[email protected]> (http://justin.harmonize.fm)",
"Stéphan Kochen <[email protected]> (http://stephan.kochen.nl/)",
"Mike Castleman <[email protected]> (http://mlcastle.net/)",
"Matt Crocker",
"Jeremy Barnes <[email protected]> (http://www.barneso.com/)",
"Rick <[email protected]> (http://techno-weenie.net/)",
"Corey Jewett (http://syntheticplayground.com/)",
"Micheil Smith <[email protected]> (http://brandedcode.com/)",
"TJ Holowaychuk <[email protected]> (http://tjholowaychuk.com/)",
"Ron Korving (https://github.com/ronkorving)",
"Mark Everitt (http://qubyte.dyndns.org/)",
"Aldis Andrejevs (https://github.com/aaudis)",
"Iskren Ivov Chernev <[email protected]>",
"Seth Fitzsimmons",
"Patrick Lucas",
"Alexander Simmerl (https://github.com/xla)",
"Ian Babrou",
"Niall O'Higgins",
"Brian White (https://github.com/mscdex)",
"Mathieu D'Amours (https://github.com/matehat)",
"Joshua Gourneau",
"Yaroslav Shirokov",
"Marc Harter (https://github.com/wavded)",
"John Sun (https://github.com/freehaha)",
"Alexey Kupershtokh <[email protected]>",
"Jon Gretar Borgthorsson (https://github.com/JonGretar)",
"Brian Lalor (https://github.com/blalor)",
"Benjamin Byholm (https://github.com/kkoopa)",
"Alejandro (https://github.com/Minjung)",
"Eli Skeggs <[email protected]> (https://github.com/skeggse)",
"Bent Cardan <[email protected]> (https://github.com/reqshark)"
]
}