-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 931 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
{
"name": "maintenance",
"version": "0.0.2",
"description": "Express.js middleware for easy switching the app to maintenance mode.",
"main": "source/maintenance.js",
"scripts": {
"test": "make test-once"
},
"config": {
"blanket": {
"pattern": "source",
"data-cover-never": "node_modules"
}
},
"repository": {
"type": "git",
"url": "git://github.com/likeastore/maintenance.git"
},
"keywords": [
"express.js",
"maintenance",
"mode",
"switch"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/likeastore/maintenance/issues"
},
"devDependencies": {
"mocha": "~1.10.0",
"chai": "~1.6.1",
"sinon-chai": "~2.4.0",
"request": "~2.21.0",
"express": "~4.13.4",
"ejs": "~1.0.0"
},
"homepage": "https://github.com/likeastore/maintenance",
"dependencies": {
"sinon": "^1.17.7"
}
}