forked from sourcefuse/loopback4-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.71 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
{
"name": "loopback4-authentication",
"version": "4.2.0",
"description": "A loopback-next extension for authentication feature. Oauth strategies supported.",
"keywords": [
"loopback-extension",
"loopback",
"loopback-next",
"authentication"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"build": "npm run clean && lb-tsc",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist *.tsbuildinfo",
"coverage": "nyc --reporter=html npm run test",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run build",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/loopback4-authentication"
},
"author": "Sourcefuse",
"license": "MIT",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/boot": "^2.1.2",
"@loopback/rest": "^3.3.2"
},
"dependencies": {
"@exlinc/keycloak-passport": "^1.0.2",
"@loopback/context": "^3.13.0",
"@loopback/core": "^2.12.0",
"passport": "^0.4.1",
"passport-azure-ad": "^4.2.1",
"passport-google-oauth20": "^2.0.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@loopback/boot": "^3.1.0",
"@loopback/build": "^6.2.6",
"@loopback/metadata": "^3.0.3",
"@loopback/rest": "^9.0.0",
"@loopback/testlab": "^3.2.8",
"@loopback/tslint-config": "^2.1.0",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.150",
"@types/node": "^10.17.44",
"@types/passport": "^1.0.3",
"@types/passport-azure-ad": "^4.0.5",
"@types/passport-google-oauth20": "^2.0.3",
"@types/passport-http-bearer": "^1.0.35",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2-client-password": "^0.1.2",
"lodash": "^4.17.20",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.1",
"tslint": "^6.1.2",
"typescript": "~4.0.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}