-
Notifications
You must be signed in to change notification settings - Fork 316
/
package.json
70 lines (70 loc) · 1.39 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
{
"name": "ngrok",
"version": "5.0.0-beta.1",
"description": "node wrapper for ngrok",
"main": "index.js",
"exports": {
".": "./index.js",
"./download": "./download.js"
},
"types": "index.d.ts",
"scripts": {
"test": "mocha --exit",
"postinstall": "node ./postinstall.js",
"postupdate": "node ./postinstall.js"
},
"files": [
"bin/ngrok",
"download.js",
"download.d.ts",
"index.js",
"index.d.ts",
"postinstall.js",
"src/autthoken.js",
"src/client.js",
"src/config.js",
"src/constants.js",
"src/process.js",
"src/utils.js",
"src/version.js"
],
"repository": {
"type": "git",
"url": "git://github.com/bubenshchykov/ngrok.git"
},
"keywords": [
"ngrok",
"localhost",
"tunneling",
"localtunnel",
"webhook"
],
"author": "bubenshchykov",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/bubenshchykov/ngrok/issues"
},
"devDependencies": {
"@types/node": "^14.18.24",
"chai": "^4.3.7",
"chalk": "^4.1.2",
"mocha": "^10.2.0",
"sinon": "^13.0.1"
},
"dependencies": {
"extract-zip": "^2.0.1",
"got": "^11.8.5",
"lodash.clonedeep": "^4.5.0",
"uuid": "^7.0.0 || ^8.0.0",
"yaml": "^2.2.2"
},
"bin": {
"ngrok": "bin/ngrok"
},
"engines": {
"node": ">=14.2"
},
"optionalDependencies": {
"hpagent": "^0.1.2"
}
}