forked from dwyl/hapi-auth-jwt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
{
"name": "hapi-auth-jwt2",
"version": "7.0.1",
"description": "Hapi.js Authentication Plugin/Scheme using JSON Web Tokens (JWT)",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dwyl/hapi-auth-jwt2.git"
},
"keywords": [
"Hapi.js",
"Authentication",
"Auth",
"JSON Web Tokens",
"JWT"
],
"author": "@nelsonic <[email protected]> (https://github.com/nelsonic)",
"contributors": [
{
"name": "Kevin Wu",
"email": "@eventhough <[email protected]>"
},
{
"name": "Alan Shaw",
"email": "@alanshaw <[email protected]>"
},
{
"name": "Benjamin Lees",
"email": "@benjaminlees <[email protected]>"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/hapi-auth-jwt2/issues"
},
"homepage": "https://github.com/dwyl/hapi-auth-jwt2",
"dependencies": {
"boom": "^3.1.3",
"cookie": "^0.3.1",
"jsonwebtoken": "^7.0.0"
},
"devDependencies": {
"aguid": "^1.0.4",
"hapi": "^13.4.1",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"pre-commit": "^1.1.3",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"engines": {
"node": ">=4.2.3"
},
"scripts": {
"quick": "./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
"test": "istanbul cover ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
"coverage": "istanbul cover ./node_modules/tape/bin/tape ./test/*.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
"start": "node example/server.js",
"report": "open coverage/lcov-report/index.html"
},
"pre-commit": [
"jshint",
"coverage"
]
}