-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "devguard-carrier",
"version": "0.11.8",
"description": "carrier nodejs api",
"main": "lib/index.js",
"author": "Arvid E. Picciani <[email protected]>",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.3.1",
"node-pre-gyp": "github:amilajack/node-pre-gyp",
"node-pre-gyp-github": "^1.4.3",
"protobufjs": "^6.8.8"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build=false || neon build --release",
"package": "node-pre-gyp package",
"upload-binary": "node-pre-gyp package && node-pre-gyp-github publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devguardio/carrier-nodejs.git"
},
"files": [
"native/index.node",
"lib"
],
"binary": {
"module_name": "index",
"host": "https://github.com/devguardio/carrier-nodejs/releases/download/",
"remote_path": "{version}",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz",
"module_path": "./native",
"pkg_path": "."
}
}