-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "koa-flexrouter",
"version": "1.0.0",
"description": "flexrouter for koa",
"keywords": [
"koa",
"koa-middleware",
"router",
"flexrouter"
],
"bugs": {
"url": "https://github.com/yviscool/koa-flexrouter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yviscool/koa-flexrouter"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8.9.0"
},
"author": "YV",
"license": "ISC",
"nyc": {
"exclude": [
"**/*.js",
"**/*.test.ts",
"**/*.d.ts",
"test*",
"dist",
"src/bin"
],
"extension": [
".ts",
".tsx"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"dependencies": {
"debug": "^4.1.1",
"koa-compose": "^4.1.0",
"methods": "^1.1.2"
},
"devDependencies": {
"@types/koa": "^2.0.48",
"@types/mocha": "^5.2.6",
"@types/power-assert": "^1.5.0",
"coveralls": "^3.0.0",
"intelli-espower-loader": "^1.0.1",
"koa": "^2.7.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"power-assert": "^1.6.1",
"source-map-support": "^0.5.12",
"supertest": "^4.0.2",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"tslint-config-egg": "^1.0.0"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"clean": "rm -rf dist/*",
"cov": "nyc mocha",
"lint": "tslint --project . -c tslint.json",
"cov:coveralls": "nyc mocha && nyc report --reporter=text-lcov | coveralls",
"codecov": "nyc mocha && nyc report --reporter=text-lcov > coverage.lcov",
"test": "npm run lint -- --fix && mocha --opts test/mocha.opts",
"build": "npm run clean && npm run tsc"
}
}