-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 1.83 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
{
"name": "kraken.next",
"version": "1.0.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/paypal/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"
},
"engineStrict": true,
"devDependencies": {
"tape": "~2.3.2",
"istanbul": "~0.2.3",
"jshint": "~2.4.1",
"supertest": "~0.8.3",
"consolidate": "~0.10.0",
"ejs": "~0.8.5",
"jade": "~1.1.4",
"dustjs-linkedin": "~2.3.0",
"raptor": "~2.7.4"
},
"peerDependencies": {
"express": "^3.4"
},
"dependencies": {
"caller": "~0.0.1",
"meddleware": "~0.0.1",
"shortstop": "~0.0.1",
"endgame": "~0.0.3",
"q": "~1.0.0",
"debuglog": "~0.0.2",
"nconf": "~0.6.9",
"shush": "~0.0.1",
"lusca": "~0.1.1",
"express-enrouten": "~0.2.0",
"core-util-is": "~1.0.1",
"formidable": "~1.0.14",
"readdirp": "~0.3.3"
}
}