forked from salzhrani/hapi-auth-jwt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.08 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
{
"name": "hapi-auth-jwt2",
"version": "7.3.0",
"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]>"
},
{
"name": "Jason Nah",
"email": "@jyn <[email protected]>"
},
{
"name": "Steven Gangstead",
"email": "@gangstead <[email protected]>"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/hapi-auth-jwt2/issues"
},
"homepage": "https://github.com/dwyl/hapi-auth-jwt2",
"dependencies": {
"boom": "^5.1.0",
"cookie": "^0.3.1",
"jsonwebtoken": "^7.4.1"
},
"devDependencies": {
"aguid": "^2.0.0",
"goodparts": "^1.2.1",
"hapi": "^16.4.3",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"pre-commit": "^1.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"engines": {
"node": ">=4.2.3"
},
"scripts": {
"quick": "./node_modules/tape/bin/tape ./test/*.test.js | node_modules/tap-spec/bin/cmd.js",
"test": "istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js | node_modules/tap-spec/bin/cmd.js",
"coverage": "istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
"lint": "node_modules/.bin/goodparts lib",
"start": "node example/server.js",
"report": "open coverage/lcov-report/index.html"
},
"pre-commit": [
"coverage",
"jshint"
]
}