forked from localtunnel/server
-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
39 lines (39 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
{
"author": "Roman Shtylman <shtylman@gmail.com>",
"name": "localtunnel-server",
"type": "module",
"description": "expose localhost to the world",
"version": "0.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/localtunnel/server.git"
},
"dependencies": {
"book": "1.3.3",
"core-util-is": "1.0.3",
"debug": "3.1.0",
"esm": "3.2.25",
"human-id": "4.1.1",
"human-readable-ids": "1.0.3",
"ipaddr.js": "2.0.1",
"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",
"node-dev": "3.1.3",
"supertest": "3.1.0",
"ws": "5.1.1"
},
"scripts": {
"test": "mocha --check-leaks '*.test.js' '**/*.test.js'",
"start": "node ./bin/server.js",
"start-esm": "node -r esm ./bin/server.js",
"dev": "node-dev ./bin/server.js --port 3000"
}
}