-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "middleware-if-unless",
"version": "1.5.0",
"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"
],
"engines": {
"node": ">=8"
},
"files": [
"index.js",
"index.d.ts",
"README.md"
],
"typings": "index.d.ts",
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"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": "^2.1.3",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"restana": "^5.1.0",
"supertest": "^7.1.4"
},
"dependencies": {
"find-my-way": "^9.3.0"
}
}