forked from krakenjs/kraken-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.09 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "kraken-js",
"version": "2.1.0",
"description": "An express-based Node.js web application bootstrapping module.",
"keywords": [
"node.js",
"node",
"javascript",
"js",
"web",
"express",
"connect"
],
"main": "index.js",
"directories": {
"example": "./example",
"lib": "./lib",
"test": "./test"
},
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc index.js lib/ middleware/"
},
"repository": {
"type": "git",
"url": "https://github.com/krakenjs/kraken-js.git"
},
"author": "Erik Toth <[email protected]>",
"contributors": [
{
"name": "Jeff Harrell",
"email": "[email protected]"
},
{
"name": "Trevor Livingston",
"email": "[email protected]"
},
{
"name": "Lenny Markus",
"email": "[email protected]"
},
{
"name": "Jean-Charles Sisk",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"consolidate": "^0.12.1",
"dustjs-linkedin": "^2.6.2",
"ejs": "^2.3.1",
"express": "^4.8.4",
"istanbul": "^0.3.13",
"jade": "^1.9.2",
"jshint": "^2.6.3",
"supertest": "^0.15.0",
"tape": "^4.0.0"
},
"peerDependencies": {
"express": "^4.8.4"
},
"dependencies": {
"bluebird": "^2.9.24",
"body-parser": "^1.12.2",
"caller": "^1.0.0",
"compression": "^1.4.3",
"confit": "^2.0.3",
"cookie-parser": "^1.3.4",
"core-util-is": "^1.0.1",
"debuglog": "^1.0.1",
"depd": "^1.0.1",
"endgame": "^1.0.0",
"express-enrouten": "^1.2.0",
"express-session": "^1.10.4",
"formidable": "^1.0.17",
"lusca": "^1.0.3",
"meddleware": "^3.0.2",
"morgan": "^1.5.2",
"serve-favicon": "^2.2.0",
"serve-static": "^1.9.2",
"shortstop": "^1.0.1",
"shortstop-handlers": "^1.0.0",
"shortstop-resolve": "^1.0.1",
"shush": "^1.0.0"
}
}