This repository has been archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.96 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
90
91
92
93
94
95
{
"name": "@labshare/services-auth",
"version": "3.4.3",
"description": "Loopback 4 plugin for resource scope-based HTTP route authz",
"main": "index.js",
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"build:apidocs": "lb-apidocs",
"build": "lb-tsc es2017 --outDir dist",
"build:watch": "lb-tsc --watch",
"clean": "lb-clean dist",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run tslint: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",
"tslint": "lb-tslint",
"tslint:fix": "npm run tslint -- --fix",
"pretest": "npm run clean && npm run build",
"test": "lb-mocha --allow-console-logs \"dist/test\"",
"posttest": "npm run lint",
"coverage": "lb-nyc npm run test && npm run nyc:report",
"nyc:report": "lb-nyc report --reporter=lcov",
"test:dev": "lb-mocha --allow-console-logs dist/test/**/*.js && npm run posttest",
"prepublishOnly": "npm run test",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"snyk": "snyk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LabShare/services-auth.git"
},
"keywords": [
"LabShare",
"Services",
"Auth"
],
"author": "",
"contributors": "https://github.com/LabShare/services-auth/graphs/contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/LabShare/services-auth/issues"
},
"homepage": "https://github.com/LabShare/services-auth#readme",
"dependencies": {
"@labshare/express-jwt": "^6.1.0",
"@loopback/boot": "^1.4.4",
"@loopback/context": "^1.20.2",
"@loopback/core": "^1.8.5",
"@loopback/rest": "^1.16.3",
"jwks-rsa": "^1.12.2",
"parse-bearer-token": "^1.0.1",
"tiny-json-http": "^7.1.2"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@loopback/build": "^1.0.0",
"@loopback/openapi-spec-builder": "^1.0.0",
"@loopback/testlab": "^1.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.10",
"@types/express-jwt": "0.0.42",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^10.11.2",
"@types/pem-jwk": "^1.5.0",
"express": "^4.16.4",
"husky": "^0.14.3",
"jsonwebtoken": "^8.3.0",
"pem-jwk": "^1.5.1",
"portfinder": "^1.0.19",
"selfsigned": "^1.10.4",
"semantic-release": "^16.0.0",
"snyk": "^1.305.0"
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"publishConfig": {
"access": "public"
}
}