-
-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "zeromq",
"version": "5.3.1",
"description": "ZeroMQ for node.js",
"main": "index",
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/zeromq/zeromq.js.git"
},
"dependencies": {
"nan": "2.17.0",
"node-gyp-build": "^4.5.0"
},
"devDependencies": {
"electron-mocha": "^6.0.0",
"mocha": "^5.0.0",
"jsdoc": "^4.0.0",
"nyc": "^15.1.0",
"prebuildify": "^5.0.1",
"semver": "^7.3.8",
"should": "^13.2.3"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"install": "node-gyp-build || npm run build:libzmq",
"build:libzmq": "node-gyp rebuild",
"prebuildify": "prebuildify -t 18.12.1 -t 16.18.1 -t 14.21.1 -t 12.22.12 -t [email protected] -t [email protected] --strip",
"prebuildify-ia32": "prebuildify --arch=ia32 -t 18.12.1 -t 16.18.1 -t 14.21.1 -t 12.22.12 -t [email protected] -t [email protected] --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 <[email protected]> (http://justin.harmonize.fm)"
}