-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.34 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
{
"name": "impress-router",
"version": "1.6.0",
"description": "port Express router to koa",
"main": "lib/router.js",
"dependencies": {
"debug": "^4.3.4",
"koa-compose": "^4.1.0",
"lodash": "^4.17.21",
"methods": "^1.1.2",
"path-to-regexp": "^2.4.0"
},
"devDependencies": {
"codecov": "^3.8.2",
"eslint": "^5.16.0",
"husky": "latest",
"istanbul": "^1.1.0-alpha.1",
"koa": "^2.13.4",
"koa-static": "^5.0.0",
"lint-staged": "latest",
"mocha": "^5.2.0",
"prettier": "latest",
"should": "^13.2.3",
"supertest": "^3.4.2"
},
"scripts": {
"test": "mocha",
"test-cover": "istanbul cover _mocha -- -u exports",
"report-cover": "codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/magicdawn/impress-router.git"
},
"keywords": [
"koa",
"router",
"route",
"express"
],
"files": [
"lib",
"package.json",
"README.md"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/impress-router/issues"
},
"homepage": "https://github.com/magicdawn/impress-router",
"engines": {
"node": ">=7.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,less,vue}": [
"prettier --write",
"git add"
]
}
}