This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
109 lines (109 loc) · 3.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@labshare/services-cache",
"namespace": "",
"main": "lib/cache/index.js",
"engines": {
"node": ">=8.9"
},
"version": "2.1.1",
"description": "LabShare Cache Services - Simple and extensible caching module with support of decorators",
"types": "index.d.ts",
"author": "LabShare",
"repository": {
"type": "git",
"url": "https://github.com/LabShare/services-cache.git"
},
"bugs": {
"url": "https://github.com/LabShare/services-cache/issues"
},
"license": "MIT",
"scripts": {
"build": "lb-tsc",
"test": "mocha 'dist/__tests__/**/*.js'",
"test:ci": "nyc --report-dir=./coverage mocha 'dist/__tests__/**/*.js'",
"prepublish": "tsc -p .",
"prepare": "npm run snyk-protect && tsc -p .",
"dev": "tsc -p . -w",
"lint": "npm run prettier:check && npm run eslint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\"",
"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",
"coverage:ci": "node packages/build/bin/run-nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release",
"snyk-protect": "snyk protect"
},
"dependencies": {
"@loopback/authentication": "^2.2.2",
"@loopback/context": "1.16.0",
"@loopback/core": "^1.7.0",
"@loopback/openapi-v3-types": "^1.0.19",
"@loopback/rest": "^1.24.0",
"@loopback/testlab": "^1.2.8",
"@types/lodash": "^4.14.126",
"@types/node": "^10.11.2",
"@types/passport": "^1.0.0",
"@types/redis": "^2.8.12",
"bluebird": "3.5.3",
"express": "4.16.3",
"lodash": "^4.17.16",
"q": "1.5.1",
"redis": "^2.8.0",
"snyk": "^1.305.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@labshare/semantic-release-config": "^1.0.0",
"@loopback/build": "^4.0.1",
"@loopback/eslint-config": "^5.0.2",
"@types/bluebird": "^3.5.24",
"@types/chai": "^4.1.7",
"@types/jest": "^24.0.13",
"@types/mocha": "^5.2.7",
"@types/node": "^10.11.2",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"body-parser": "1.18.3",
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"delay": "3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"eslint-plugin-mocha": "^6.2.2",
"husky": "^2.1.0",
"istanbul": "0.4.5",
"jasmine": "3.1.0",
"lerna": "^3.14.1",
"mocha": "^6.2.3",
"proxyquire": "^2.1.0",
"semantic-release": "^15.5.0",
"sinon": "^7.2.2",
"supertest": "3.1.0",
"ts-node": "^7.0.1",
"typescript": "^3.8.3"
},
"nyc": {
"reporter": [
"text",
"lcov"
]
},
"publishConfig": {
"access": "restricted"
},
"release": {
"extends": "@labshare/semantic-release-config"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"snyk": true
}