-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "node-ngrok-cli",
"version": "0.0.3",
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/barbarbar338/node-ngrok-cli"
},
"bin": {
"ngrok": "./dist/index.js"
},
"author": {
"email": "hi@388.rocks",
"name": "Barış DEMİRCİ",
"url": "https://338.rocks"
},
"license": "GPL-3.0",
"description": "✨ NGROK CLI made with NodeJS",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write .",
"format:watch": "onchange . -- prettier --write {{changed}}",
"lint": "eslint --fix .",
"lint:watch": "onchange . -- eslint --fix {{changed}}",
"update": "taze major -w && yarn"
},
"devDependencies": {
"@types/node": "^18.8.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"onchange": "^7.1.0",
"prettier": "^2.7.1",
"taze": "^0.8.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@hammerhq/cli-tool": "^0.0.4",
"@hammerhq/logger": "^0.0.4",
"ngrok": "^4.3.3"
},
"keywords": [
"ngrok",
"node-ngrok",
"ngrok-cli",
"tunnel"
]
}