forked from nlf/hapi-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "hapi-sol",
"version": "2.1.3",
"description": "A simpler session based auth plugin for Hapi",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/yonjah/hapi-sol.git"
},
"keywords": [
"hapi",
"plugin",
"session",
"auth"
],
"author": "Yoni Jah <yoni.jah@non.co.il>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yonjah/hapi-sol/issues"
},
"devDependencies": {
"bluebird": "^3.5.4",
"eslint": "^5.16.0",
"hapi": "^18.1.0",
"mocha": "^6.1.4",
"mocha-istanbul": "^0.3.0",
"nyc": "^14.0.0",
"ralphi": "^3.1.4",
"ralphi-client": "^3.1.4",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.3.2"
},
"scripts": {
"test": "ENVIRONMENT=test mocha test",
"test-xml": "ENVIRONMENT=test mocha --reporter xunit test > result.xml",
"cover": "nyc --reporter=lcov --reporter=text mocha test",
"lint": "eslint lib/ test/ examples/"
},
"dependencies": {
"boom": "^7.3.0",
"hoek": "^6.1.3",
"joi": "^14.3.1"
},
"peerDependencies": {
"hapi": ">=8.x.x"
}
}