-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.18 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": "koa-rewrite",
"version": "3.0.1",
"description": "URL rewrite middleware for koa",
"main": "index.js",
"scripts": {
"lint": "eslint --fix .",
"test-only": "mocha --reporter spec test/test.js --exit",
"test": "npm run lint & npm run test-only",
"test-cov": "nyc npm run test"
},
"keywords": [
"koa",
"middleware",
"rewrite",
"redirect",
"url"
],
"repository": {
"type": "git",
"url": "git://github.com/koajs/rewrite.git"
},
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"report-dir": "./coverage"
},
"dependencies": {
"debug": "^4.1.1",
"path-to-regexp": "^6.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"koa": "^2.11.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"supertest": "^4.0.2"
},
"engines": {
"node": ">= 8"
},
"bugs": {
"url": "https://github.com/koajs/rewrite/issues"
},
"homepage": "https://github.com/koajs/rewrite"
}