-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
62
63
{
"name": "jweb",
"version": "1.3.13",
"description": "A typeScript httpServer support annotation",
"main": "build/index.js",
"typings": "types/index.d.ts",
"files": [
"build/**/*.js",
"types/*.d.ts"
],
"scripts": {
"tsc": "tsc",
"tsc-watch": "tsc -w",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch build/ build/lib/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/7kgame/jweb.git"
},
"keywords": [
"httpServer",
"typeScript",
"annotation"
],
"author": "cyij2006@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/7kgame/jweb/issues"
},
"homepage": "https://github.com/7kgame/jweb#readme",
"dependencies": {
"@hapi/boom": "7.x.x",
"@hapi/hapi": "^18.x.x",
"@hapi/inert": "^5.x.x",
"ejs": "^2.x.x",
"formidable": "^1.2.1",
"jbean": "x.x.x",
"path-to-regexp": "^3.1.0",
"yaml": "^1.x.x"
},
"devDependencies": {
"@types/boom": "^7.x.x",
"@types/ejs": "^2.x.x",
"@types/formidable": "^1.0.31",
"@types/hapi": "^18.x.x",
"@types/inert": "^5.x.x",
"@types/node": "^12.0.7",
"@types/yaml": "^1.x.x",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
}
}