forked from johnbrett/hapi-auth-bearer-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
49
{
"name": "hapi-auth-bearer-token",
"description": "Simple Bearer authentication scheme plugin for hapi, accepts token by Header, Cookie or Query parameter.",
"version": "6.1.1",
"author": "John Brett <[email protected]> (https://johnbrett.me)",
"repository": {
"type": "git",
"url": "git://github.com/johnbrett/hapi-auth-bearer-token"
},
"main": "lib/index.js",
"keywords": [
"hapi",
"plugin",
"auth",
"scheme",
"bearer",
"token",
"cookie",
"authentication"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"boom": "^7.1.1",
"hoek": "^6.0.0",
"joi": "^14.1.0"
},
"peerDependencies": {
"hapi": ">=17.x.x"
},
"devDependencies": {
"code": "^5.1.2",
"hapi": "^17.0.1",
"lab": "^17.0.0"
},
"scripts": {
"test": "lab -a code -t 100 -L",
"test-cov-html": "lab -a code -r html -o coverage.html"
},
"bugs": {
"url": "https://github.com/johnbrett/hapi-auth-bearer-token/issues"
},
"homepage": "https://github.com/johnbrett/hapi-auth-bearer-token",
"directories": {
"test": "test"
},
"license": "MIT"
}