-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 883 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 883 Bytes
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
{
"type": "module",
"author": "Vladlen Fedosov <vlad.fedosov@gmail.com>",
"name": "mytunnel-server",
"description": "Expose localhost to the world",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git://github.com/StyleT/mytunnel-server.git"
},
"dependencies": {
"book": "1.3.3",
"debug": "3.1.0",
"esm": "3.0.34",
"human-readable-ids": "1.0.3",
"koa": "2.5.1",
"koa-router": "7.4.0",
"localenv": "0.2.2",
"optimist": "0.6.1",
"pump": "3.0.0",
"tldjs": "2.3.1"
},
"devDependencies": {
"mocha": "^8.3.0",
"nodemon": "2.0.7",
"supertest": "3.1.0",
"ws": "5.1.1"
},
"scripts": {
"test": "mocha --check-leaks **/*.test.js",
"start": "./bin/server.js",
"dev": "DEBUG=mytunnel* nodemon bin/server.js --port 3000"
}
}