-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "hapi-authorized-scope",
"description": "hapi plugin to require multiple authentication strategies",
"version": "2.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/futurestudio/hapi-authorized-scope/issues"
},
"devDependencies": {
"@hapi/code": "~9.0.0",
"@hapi/hapi": "~21.3.0",
"@hapi/lab": "~25.2.0",
"eslint": "~7.32.0",
"eslint-config-standard": "~16.0.1",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~6.1.0",
"eslint-plugin-standard": "~4.1.0",
"husky": "~9.0.1"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/futurestudio/hapi-authorized-scope#readme",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"keywords": [
"hapi",
"hapi.js",
"hapijs",
"plugin",
"auth",
"scopes",
"authorization"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/futurestudio/hapi-authorized-scope.git"
},
"scripts": {
"format": "eslint **/*.js --fix",
"lint": "eslint **/*.js",
"test": "lab --coverage --leaks --lint"
}
}