-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.51 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.51 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
{
"name": "loopback4-security",
"version": "1.0.0",
"description": "Loopback 4 security (JWT) with MongoDB",
"keywords": [
"loopback-application",
"loopback"
],
"main": "index.js",
"engines": {
"node": ">=8.9"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"clean": "lerna run clean",
"commit": "git-cz",
"commitmsg": "commitlint -E GIT_PARAMS",
"docker:start": "./bin/start-dbs.sh",
"docker:stop": "./bin/stop-dbs.sh",
"lint": "npm run prettier:check && npm run tslint",
"lint:fix": "npm run prettier:fix && npm run tslint:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\" \"**/*.md\"",
"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",
"pretest:ci": "npm run build",
"test": "lb-mocha --allow-console-logs \"packages/*/dist/__tests__/**/*.js\"",
"test:ci": "lb-mocha --allow-console-logs \"packages/*/dist/__tests__/**/*.js\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs \"packages/*/dist/__tests__/**/*.js\" && npm run posttest",
"prestart": "npm run build",
"start": "concurrently --kill-others \"npm run start:app\"",
"start:app": "node ./packages/security",
"start:recommender": "node ./packages/recommender",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git"
},
"author": "",
"license": "",
"files": [
"README.md",
"index.js",
"index.d.ts",
"dist",
"packages/security/src",
"!*/__tests__"
],
"dependencies": {
"@loopback/boot": "^1.2.2",
"@loopback/context": "^1.12.0",
"@loopback/core": "^1.5.0",
"@loopback/openapi-v3": "^1.3.6",
"@loopback/repository": "^1.5.0",
"@loopback/rest": "^1.10.3",
"@loopback/rest-explorer": "^1.1.17",
"@loopback/service-proxy": "^1.1.5"
},
"devDependencies": {
"@loopback/build": "^1.5.0",
"@loopback/testlab": "^1.2.5",
"@loopback/tslint-config": "^2.0.4",
"@types/node": "^10.11.2",
"lerna": "^3.13.4",
"tslint": "^5.15.0",
"typescript": "^3.4.3",
"commitizen": "^3.1.1",
"husky": "^1.3.1",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/config-lerna-scopes": "^7.5.1",
"@commitlint/travis-cli": "^7.5.2",
"concurrently": "^4.1.0",
"cz-conventional-changelog": "^2.1.0"
}
}