-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.14 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
{
"name": "travelogue",
"description": "hapi passport.js integration helper",
"version": "0.1.3",
"author": "Van Nguyen <[email protected]>",
"contributors": [
"Jared Hanson <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/spumko/travelogue.git"
},
"main": "index",
"keywords": [
"hapi",
"passport",
"passportjs",
"oauth",
"openid"
],
"engines": {
"node": "0.8.x"
},
"dependencies": {
"boom": "0.3.x",
"hoek": "0.6.x",
"passport": "0.1.x",
"yar": "0.1.x"
},
"peerDependencies": {
"hapi": "0.15.x"
},
"devDependencies": {
"hapi": "0.15.x",
"mocha": "1.x.x",
"chai": "1.x.x",
"blanket": "1.0.x",
"travis-cov": "0.2.x",
"passport-local": "0.1.x"
},
"scripts": {
"test": "make test && make test-cov",
"blanket": { "pattern": "//^((?!\/node_modules\/)(?!\/test\/).)*$/ig", "onlyCwd": true, "data-cover-flags": { "branchTracking": true } },
"travis-cov": { "threshold": 55 }
},
"licenses": [
{
"type": "BSD",
"url": "http://github.com/spumko/travelogue/raw/master/LICENSE"
}
]
}