This repository was archived by the owner on May 28, 2021. It is now read-only.
forked from DEFRA/defra-identity-hapi-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 KB
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
{
"name": "@envage/defra-identity-hapi-plugin",
"version": "3.0.0",
"description": "A hapi auth plugin to allow easy integration with DEFRA's Identity Management system",
"repository": {
"type": "git",
"url": "github:DEFRA/defra-identity-hapi-plugin"
},
"directories": {
"lib": "lib",
"test": "test",
"example": "demo"
},
"main": "./lib/index.js",
"scripts": {
"demo": "DEBUG=defra.identity:* node demo",
"postinstall": "cp -n demo/.env.template demo/.env || echo 'Note: Error creating demo/.env. File may already exist'",
"test": "PORT=8001 lab -vcL --timeout 20000",
"lint": "PORT=8001 lab -dL",
"test:html": "PORT=8001 lab -vcL -r html -o coverage.html",
"test:lcov": "PORT=8001 lab -vcL -r lcov -o coverage.lcov",
"test:analyse": "npm run test:lcov && gulp analyse"
},
"pre-commit": [
"lint"
],
"author": "Department for Environment, Food & Rural Affairs",
"license": "See LICENSE.md",
"engines": {
"node": "^8.12.0",
"npm": "^6.4.1"
},
"dependencies": {
"adal-node": "^0.1.28",
"await-to-js": "^2.0.1",
"debug": "^3.1.0",
"hapi-auth-cookie": "^8.1.0",
"joi": "^13.4.0",
"lodash": "^4.17.11",
"md5": "^2.2.1",
"openid-client": "^2.4.5",
"request": "^2.88.0",
"uuid": "^3.2.1",
"yar": "^9.1.0"
},
"devDependencies": {
"blipp": "^3.0.0",
"catbox-mongodb": "^4.2.0",
"code": "^5.2.0",
"dotenv": "^5.0.1",
"ejs": "^2.5.7",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"hapi": "^17.3.1",
"inert": "^5.1.0",
"lab": "^17.2.1",
"pre-commit": "^1.2.2",
"snazzy": "^7.1.1",
"sonarqube-scanner": "^2.1.2",
"standard": "^11.0.1",
"vision": "^5.3.1"
}
}