forked from dwyl/hapi-auth-jwt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.04 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
{
"name": "hapi-auth-jwt2",
"version": "5.0.3",
"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]>"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/hapi-auth-jwt2/issues"
},
"homepage": "https://github.com/dwyl/hapi-auth-jwt2",
"dependencies": {
"boom": "^2.8.0",
"cookie": "^0.2.0",
"jsonwebtoken": "^5.0.5"
},
"peerDependencies": {
"hapi": ">=9.x.x"
},
"devDependencies": {
"aguid": "^1.0.3",
"hapi": "^9.0.3",
"codeclimate-test-reporter": "^0.1.0",
"istanbul": "^0.3.18",
"jshint": "^2.8.0",
"pre-commit": "^1.1.1",
"redis": "^0.12.1",
"tap-spec": "^4.0.2",
"tape": "^4.2.0"
},
"engines": {
"node": ">=0.10"
},
"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 .",
"codeclimate": "CODECLIMATE_REPO_TOKEN=6c47340a2888b54541779bd8bffcaad5577095a7ae888b72b4736fc68eb094f8 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info",
"start": "node example/server.js",
"report": "open coverage/lcov-report/index.html"
},
"pre-commit": [
"jshint",
"coverage",
"codeclimate"
]
}