forked from bubenshchykov/ngrok
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.07 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
{
"name": "ngrok",
"version": "3.4.0",
"description": "node wrapper for ngrok",
"main": "index.js",
"types": "ngrok.d.ts",
"scripts": {
"test": "node ./node_modules/mocha/bin/_mocha --exit",
"postinstall": "node ./postinstall.js",
"postupdate": "node ./postinstall.js"
},
"files": [
"index.js",
"download.js",
"postinstall.js",
"process.js",
"bin/ngrok",
"ngrok.d.ts"
],
"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": "~3.5.0",
"colors": "^1.3.3",
"homedir": "^0.6.0",
"mocha": "^5.2.0"
},
"dependencies": {
"@types/node": "^8.10.50",
"decompress-zip": "^0.3.2",
"got": "^11.5.1",
"uuid": "^3.3.2"
},
"bin": {
"ngrok": "./bin/ngrok"
},
"engines": {
"node": ">=10.19.0"
}
}