forked from sourcefuse/loopback4-authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.56 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "loopback4-authentication",
"version": "2.1.3",
"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": "^1.4.4",
"@loopback/context": "^1.20.2",
"@loopback/core": "^1.8.5",
"@loopback/rest": "^1.16.3"
},
"dependencies": {
"passport": "^0.4.0",
"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": "^0.1.3",
"@loopback/boot": "^1.4.4",
"@loopback/build": "^2.0.5",
"@loopback/context": "^1.20.2",
"@loopback/core": "^1.8.5",
"@loopback/rest": "^1.16.3",
"@loopback/testlab": "^1.6.3",
"@loopback/tslint-config": "^2.1.0",
"@types/express": "^4.17.0",
"@types/lodash": "^4.14.135",
"@types/node": "^10.14.8",
"@types/passport": "^1.0.0",
"@types/passport-google-oauth20": "^2.0.1",
"@types/passport-http-bearer": "^1.0.33",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2-client-password": "^0.1.2",
"lodash": "^4.17.14",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}