-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
49
50
51
52
{
"name": "summon-middleware",
"description": "Dynamically enable or disable express middlewares",
"version": "2.0.2",
"contributors": [
{
"name": "Mauro Doganieri",
"email": "mauro.doganieri@gmail.com"
},
{
"name": "Nicola Del Gobbo",
"email": "nicoladelgobbo@gmail.com"
}
],
"keywords": [
"dynamic",
"middleware",
"express",
"connect",
"runtime",
"conditional"
],
"license": "Apache-2.0",
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json",
"test-travis": "node node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json",
"test-appveyor": "node ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=__test__/jasmine.json"
},
"engines": {
"node": ">= 0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mauro-d/summon-middleware"
},
"bugs": {
"url": "https://github.com/mauro-d/summon-middleware/issues"
},
"devDependencies": {
"express": "^4.16.2",
"jasmine": "^3.1.0",
"response-powered-by": "^1.0.4",
"supertest": "^3.0.0"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"index.js",
"lib/"
]
}