-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.22 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
{
"name": "koa-metarouter",
"version": "2.3.0",
"description": "this project is use Decorators defined koa-router",
"main": "lib/index.js",
"files": [
"/lib"
],
"scripts": {
"build": "tsc -d",
"lint": "eslint . --fix",
"prepub": "npm run build | npm run test",
"pub": "npm publish",
"test": "npm run build & npx ts-node .\\__test__\\index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TsBoot/koa-metarouter.git"
},
"keywords": [
"koa",
"koa-router",
"typescript"
],
"author": "gaoyi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TsBoot/koa-metarouter/issues"
},
"homepage": "https://github.com/TsBoot/koa-metarouter#readme",
"devDependencies": {
"@koa/router": "^10.1.1",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.8",
"@types/methods": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-tsboot": "^1.0.2",
"eslint-plugin-import": "^2.24.2",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"methods": "^1.1.2"
}
}