-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.51 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
57
58
59
60
61
{
"name": "@sevenryze/server-router",
"version": "2.0.1",
"main": "dist/lib/index.js",
"files": [
"dist/",
"typings/"
],
"scripts": {
"start": "towerflow start",
"production": "towerflow production",
"test": "towerflow test --env=node",
"publish-to-npm": "npm test && npm run production && npm publish",
"generate-config": "towerflow assistant --generate-config",
"remove-config": "towerflow assistant --remove-config"
},
"towerflow": {
"type": "node-lib"
},
"dependencies": {
"@types/debug": "0.0.31",
"@types/etag": "^1.8.0",
"@types/fresh": "^0.5.0",
"@types/node": "^10.12.12",
"@types/request-ip": "0.0.33",
"@types/serve-static": "^1.13.2",
"debug": "^4.1.0",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"request-ip": "^2.1.3",
"serve-static": "^1.13.2"
},
"devDependencies": {
"@types/superagent": "^3.8.5",
"superagent": "^4.0.0",
"towerflow": "^1.3.12"
},
"description": "Backend Server Framework of DeepDigest Inc.",
"keywords": [
"DeepDigest Inc.",
"Server Router",
"Framework"
],
"homepage": "https://github.com/sevenryze/server-router",
"bugs": {
"url": "https://github.com/sevenryze/server-router/issues",
"email": "[email protected]"
},
"license": "GPL-3.0",
"author": {
"name": "sevenryze",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sevenryze/server-router"
},
"engines": {
"node": ">= 10"
}
}