-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 939 Bytes
/
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
{
"name": "express-urlrewrite",
"version": "2.0.3",
"description": "URL rewrite middleware for express",
"repository": {
"type": "git",
"url": "git://github.com/kapouer/express-urlrewrite"
},
"scripts": {
"test": "NODE_ENV=test nyc mocha"
},
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"express",
"middleware",
"rewrite",
"redirect",
"url"
],
"files": [
"index.*"
],
"license": "MIT",
"dependencies": {
"debug": "^4.3.4",
"path-to-regexp": "^6.3.0"
},
"devDependencies": {
"@kapouer/eslint-config": "^2.0.0",
"chai": "^5.1.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"overrides": [
{
"files": [
"test/*.js"
],
"env": {
"mocha": true
}
}
]
}
}