-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "firestarter",
"description": "Module to safely and easily start and stop your express app",
"version": "0.1.61",
"author": "davewilliamson",
"homepage": "http://firestarter.ukit.net",
"keywords": [
"express",
"startup",
"shutdown",
"error handling",
"errors",
"SPDY"
],
"bugs": "https://github.com/davewilliamson/firestarter/issues",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:davewilliamson/firestarter.git"
},
"contributors": [
{
"name": "Dave Williamson",
"email": "dave@ukit.net",
"url": "http://github.com/davewilliamson"
}
],
"engine": {
"node": ">=4.4.5"
},
"scripts": {
"test": "echo \"No tests :(\""
},
"main": "index.js",
"eslintConfig": {
"env": {
"node": true,
"browser": false
},
"globals": {
"inspect": true,
"immediately": true,
"require": true,
"module": true
},
"rules": {
"quotes": [
2,
"single"
],
"no-mixed-requires": [
0,
true
],
"no-underscore-dangle": 0
}
},
"dependencies": {
"colors": "latest",
"express": "latest",
"findhit-proxywrap": "git+https://github.com/danilobuiatti/proxywrap.git#master",
"gc-stats": "^1.2.0",
"graceful-fs": "latest",
"spdy": "latest"
}
}