forked from StyleT/mytunnel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "@namecheap/easy-tunnel",
"description": "Expose localhost to the world",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/namecheap/easy-tunnel.git"
},
"author": "Namecheap <[email protected]>",
"contributors": [],
"main": "./easyTunnel.js",
"types": "./easyTunnel.d.ts",
"bin": {
"et": "bin/et.js"
},
"scripts": {
"dev:client": "nodemon --inspect ./bin/et.js --port 3001 --host http://lvh.me:8087 --subdomain test --open",
"dev:backend": "nodemon server.js",
"dev": "DEBUG=mytunnel:* concurrently --raw npm:dev:backend npm:dev:client",
"test": "mocha --timeout 15000 --exit -- *.spec.js",
"prepare": "husky"
},
"dependencies": {
"axios": "1.7.2",
"debug": "4.3.1",
"openurl": "1.1.1",
"pump": "3.0.0",
"yargs": "17.5.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"chai": "^4.3.0",
"chai-string": "^1.5.0",
"concurrently": "^8.2.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"nock": "^13.5.5",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"semantic-release": "^24.1.3",
"supertest": "^7.0.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16"
}
}