forked from dwyl/hapi-auth-jwt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.22 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "hapi-auth-jwt2",
"version": "8.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 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]>"
},
{
"name": "Samy Al Zahrani",
"user": "@salzhrani"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/hapi-auth-jwt2/issues"
},
"homepage": "https://github.com/dwyl/hapi-auth-jwt2",
"dependencies": {
"boom": "^7.1.1",
"cookie": "^0.3.1",
"jsonwebtoken": "^8.1.0"
},
"devDependencies": {
"aguid": "^2.0.0",
"eslint": "^5.9.0",
"eslint-plugin-prettier": "^3.0.0",
"hapi": "^18.0.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.15.2",
"tap-nyc": "^1.0.3",
"tape": "^4.9.1"
},
"engines": {
"node": ">=8.9.0"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.spec.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"all": true,
"report-dir": "./coverage"
},
"scripts": {
"quick": "./node_modules/tape/bin/tape ./test/*.test.js | tap-nyc",
"test": "nyc tape ./test/*.test.js | tap-nyc",
"coverage": "nyc tape ./test/*.test.js && nyc",
"lint": "eslint lib",
"fixlint": "eslint lib --fix",
"start": "node example/server.js",
"report": "open coverage/lcov-report/index.html"
},
"pre-commit": [
"lint",
"coverage"
]
}