-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "@tng/koa-controller",
"version": "1.0.0-alpha.1",
"description": "Write koa http server with koa-controller by decorator feature in typescript.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src",
"prepare": "npm run build",
"test": "mocha",
"test:coverage": "nyc mocha"
},
"dependencies": {
"ajv": "^8.12.0",
"debug": "^4.3.4",
"glob": "^8.1.0",
"koa-router": "^12.0.0",
"lodash": "^4.17.21",
"opentracing": "^0.14.7"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/glob": "^8.0.1",
"@types/http-errors": "^2.0.1",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"author": {
"name": "Orange Mi",
"email": "orangemiwj@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/teambition/koa-controller.git"
},
"homepage": "https://github.com/teambition/koa-controller#readme",
"bugs": {
"url": "https://github.com/teambition/koa-controller/issues"
},
"license": "MIT"
}