forked from bubenshchykov/ngrok
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.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
{
"name": "ngrok",
"version": "4.0.0",
"description": "node wrapper for ngrok",
"main": "index.js",
"types": "ngrok.d.ts",
"scripts": {
"test": "mocha --exit",
"postinstall": "node ./postinstall.js",
"postupdate": "node ./postinstall.js"
},
"files": [
"bin/ngrok",
"download.js",
"index.js",
"ngrok.d.ts",
"postinstall.js",
"src/client.js",
"src/process.js",
"src/utils.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": {
"chai": "^4.3.4",
"colors": "^1.4.0",
"mocha": "^8.3.2"
},
"dependencies": {
"@types/node": "^8.10.50",
"decompress-zip": "^0.3.2",
"got": "^11.5.1",
"uuid": "^3.3.2",
"yaml": "^1.10.0"
},
"bin": {
"ngrok": "bin/ngrok"
},
"engines": {
"node": ">=10.19.0"
},
"optionalDependencies": {
"hpagent": "^0.1.1"
}
}