-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "middleware-if-unless",
"version": "1.4.1",
"description": "Invokes connect-like middleware if / unless routing criteria matches. Inspired on express-unless module.",
"main": "index.js",
"scripts": {
"test": "PORT=3000 NODE_ENV=testing npx nyc --check-coverage --lines 95 node ./node_modules/mocha/bin/mocha tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkyberneees/middleware-if-unless.git"
},
"keywords": [
"middleware",
"if",
"unless"
],
"files": [
"README.md"
],
"engines": {
"node": ">=8"
},
"author": "Rolando Santamaria Maso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkyberneees/middleware-if-unless/issues"
},
"homepage": "https://github.com/jkyberneees/middleware-if-unless#readme",
"devDependencies": {
"chai": "^4.3.7",
"express-unless": "^1.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"restana": "^4.9.7",
"supertest": "^6.3.3"
},
"dependencies": {
"find-my-way": "^9.0.1"
}
}