-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@ngrok/ngrok",
"version": "1.4.1",
"main": "index.js",
"types": "index.d.ts",
"files": [
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"index.js",
"index.d.ts",
"package.json"
],
"napi": {
"name": "ngrok",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi",
"universal-apple-darwin"
]
}
},
"unused-for-now": "aarch64-pc-windows-msvc",
"license": "(MIT OR Apache-2.0)",
"devDependencies": {
"@napi-rs/cli": "^2.15.1",
"@types/node": "^18.13.0",
"ava": "^4.3.3",
"axios": "^1.3.3",
"axios-retry": "^3.4.0",
"express": "^4.18.2",
"prettier": "^2.8.7",
"typedoc": "^0.24.7",
"typescript": "^4.9.5"
},
"ava": {
"timeout": "3m"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js gen.js --dts gen.d.ts --pipe 'node post-build.js trailer index'",
"build:debug": "napi build --platform",
"clean": "rm -rf node_modules/ target/",
"docs": "mv trailer.d.ts trailer.d.hidden; mv examples .examples; npx typedoc index.d.ts --navigation.includeGroups; mv .examples examples; mv trailer.d.hidden trailer.d.ts",
"prepublishOnly": "napi prepublish -t npm",
"prettier": "prettier --write .",
"test": "tsc --strict index.d.ts && ava",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]",
"description": "The ngrok agent in library form, suitable for integrating directly into your NodeJS application.",
"keywords": [
"ngrok",
"nodejs",
"ingress",
"networking"
],
"homepage": "https://ngrok.github.io/ngrok-javascript/",
"repository": {
"type": "git",
"url": "https://github.com/ngrok/ngrok-javascript.git"
}
}