forked from zeromq/zeromq.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 KB
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
{
"name": "zeromq",
"version": "5.3.1-eagle-electron16.2.8-node16.9.1-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",
"jsdoc": "^4.0.0",
"mocha": "^5.0.0",
"node-gyp": "^9.4.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 node@16.9.1 -t electron@16.2.8 --strip",
"prebuildify-ia32": "prebuildify --arch=ia32 -t node@16.9.1 -t electron@16.2.8 --strip",
"prepublish": "npm run prebuildify",
"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)",
"publishConfig": {
"registry": "https://artifactory6.grabcad.net/artifactory/api/npm/npm-local/"
}
}