forked from zeromq/zeromq.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "zeromq-stable",
"version": "5.2.1",
"description": "ZeroMQ for node.js",
"main": "index.js",
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/noahw3/zeromq.js.git"
},
"dependencies": {
"nan": "^2.10.0",
"prebuild-install": "5.2.1"
},
"devDependencies": {
"electron-mocha": "^6.0.0",
"jsdoc": "^3.5.4",
"mocha": "^5.0.0",
"nyc": "^12.0.2",
"prebuild": "^8.1.0",
"semver": "^5.4.1",
"should": "^13.0.0"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"build:libzmq": "node scripts/preinstall.js",
"install": "node scripts/prebuild-install.js || (node scripts/preinstall.js && node-gyp rebuild)",
"prebuild": "prebuild --all --strip",
"build:docs": "jsdoc -R README.md -d docs lib/*.js",
"test": "mocha --expose-gc --slow 300",
"test:electron": "electron-mocha --slow 300",
"precoverage": "nyc npm run test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"keywords": [
"zeromq",
"zmq",
"0mq",
"ømq",
"libzmq",
"native",
"binding",
"addon"
],
"license": "MIT",
"author": "Justin Tulloss <justin.tulloss@gmail.com> (http://justin.harmonize.fm)"
}