-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 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
{
"name": "@openziti/ziti-sdk-nodejs",
"description": "A NodeJS-based SDK for delivering secure applications over a Ziti Network",
"version": "0.18.0",
"main": "./lib/ziti",
"scripts": {
"build": "npm run build:configure && npm run build:make",
"build:configure": "run-script-os",
"build:configure:windows": "configure",
"build:configure:linux:darwin": "./configure",
"build:make": "cmake-js build",
"build:package": "node-pre-gyp package",
"clean": "cmake-js clean",
"test": "echo \"Error: no test specified\"",
"install": "node-pre-gyp install || npm run build",
"publish": "node-pre-gyp package publish",
"docs": "jsdoc2md -t API_REFERENCE.hbs lib/*.js > API_REFERENCE.md"
},
"repository": {
"type": "git",
"url": "https://github.com/openziti/ziti-sdk-nodejs.git"
},
"binary": {
"module_name": "ziti_sdk_nodejs",
"module_path": "./build/{configuration}/",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://ziti-npm.s3.amazonaws.com"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"ziti",
"nodejs"
],
"engines": {
"node": ">=11.0.0"
},
"author": {
"name": "OpenZiti",
"url": "http://openziti.io"
},
"devDependencies": {
"aws-sdk": "^2.1473.0",
"docdash": "^1.2.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^7.1.1",
"run-script-os": "^1.1.6"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.11",
"bindings": "^1.5.0",
"cmake-js": "^7.2.1"
}
}