This repository has been archived by the owner on Feb 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.16 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
{
"name": "@labshare/lb-services-auth",
"version": "1.3.0",
"description": "Services auth",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"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",
"test:dev": "lb-mocha --allow-console-logs dist/test/**/*.js && npm run posttest",
"prepublishOnly": "npm run test",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist/src",
"dist/index*",
"src"
],
"dependencies": {
"@loopback/boot": "^1.0.2",
"@loopback/context": "^1.0.0",
"@loopback/core": "^1.0.0",
"@loopback/rest": "^1.1.0",
"express-jwt": "github:KalleV/express-jwt#dad0daebe354a9ad0fc8ab160e406fd5a3cac7d9",
"jwks-rsa": "^1.3.0",
"parse-bearer-token": "^1.0.0"
},
"devDependencies": {
"@labshare/semantic-release-config": "^1.0.0",
"@loopback/build": "^1.0.0",
"@loopback/openapi-spec-builder": "^1.0.0",
"@loopback/testlab": "^1.0.0",
"@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",
"jsonwebtoken": "^8.3.0",
"pem-jwk": "^1.5.1",
"portfinder": "^1.0.19",
"selfsigned": "^1.10.4",
"semantic-release": "^15.10.8",
"travis-deploy-once": "^5.0.9"
},
"publishConfig": {
"access": "restricted"
},
"release": {
"extends": "@labshare/semantic-release-config"
}
}