forked from hapijs/hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.1 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
{
"name": "hapi",
"description": "HTTP Server framework",
"homepage": "http://hapijs.com",
"version": "1.14.0",
"repository": {
"type": "git",
"url": "git://github.com/spumko/hapi"
},
"main": "index",
"keywords": [
"framework",
"http",
"api",
"router"
],
"engines": {
"node": "0.10.x"
},
"dependencies": {
"hoek": "1.x.x",
"boom": "1.x.x",
"joi": "1.x.x",
"catbox": "1.x.x",
"hawk": "1.x.x",
"shot": "1.x.x",
"cryptiles": "1.x.x",
"iron": "1.x.x",
"confidence": "0.8.x",
"async": "0.2.x",
"multiparty": "2.1.x",
"mime": "1.2.x",
"lru-cache": "2.3.x",
"optimist": "0.6.x",
"negotiator": "0.2.x",
"semver": "2.0.x"
},
"devDependencies": {
"lab": "1.x.x",
"request": "2.22.x",
"handlebars": "1.0.x",
"jade": "0.33.x",
"hapi-plugin-test": "1.x.x",
"dtrace-provider": "0.2.x"
},
"bin": {
"hapi": "./bin/hapi"
},
"scripts": {
"test": "make test-cov"
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/spumko/hapi/raw/master/LICENSE"
}
]
}