-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
45
46
47
48
{
"name": "middleware-if-unless",
"version": "1.6.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/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BackendStack21/middleware-if-unless.git"
},
"keywords": [
"middleware",
"if",
"unless"
],
"engines": {
"node": ">=22.0.0"
},
"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/BackendStack21/middleware-if-unless/issues"
},
"homepage": "https://iff-unless.21no.de/",
"devDependencies": {
"chai": "^6.2.2",
"express-unless": "^2.1.3",
"mocha": "^11.3.0",
"nyc": "^18.0.0",
"restana": "^5.1.0",
"supertest": "^7.2.2"
},
"dependencies": {
"find-my-way": "^9.5.0"
},
"overrides": {
"diff": "^5.2.0",
"serialize-javascript": "^7.0.5"
}
}