-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.11 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
{
"name": "@codefresh-io/service-base",
"version": "7.0.0",
"main": "index.js",
"description": "",
"bin": {
"cf-openapi": "./node_modules/cf-openapi/bin/cf-openapi"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"test": "(find . -not -path './node_modules/*' -path '*/*.spec.js' | grep -v '__tests__' | NODE_ENV=test xargs mocha) && jest",
"start": "node index.js",
"eslint": "eslint infra/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefresh-io/service-base.git"
},
"author": "Arik Maor <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/codefresh-io/service-base/issues"
},
"resolutions": {
"eslint/**/ansi-regex": "^4.0.0",
"js-yaml": "^3.13.1",
"json-schema": "^0.4.0",
"request/qs": "6.5.3",
"get-func-name": "^2.0.1"
},
"homepage": "https://github.com/codefresh-io/service-base#readme",
"dependencies": {
"@codefresh-io/authenticated-entity": "^2.17.1",
"@codefresh-io/cf-monitor": "^12.0.0",
"@codefresh-io/cf-openapi": "^0.7.20",
"@codefresh-io/eventbus": "^2.0.0",
"@codefresh-io/http-infra": "^1.8.15",
"@codefresh-io/internal-service-config": "^1.0.3",
"@wegolook/joi-objectid": "^2.4.0",
"ajv": "^6.10.0",
"bluebird": "^3.5.3",
"body-parser": "^1.19.2",
"cf-errors": "^0.1.15",
"cf-logs": "^1.1.26",
"chai": "4.3.10",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"express": "^4.17.3",
"joi": "^13.0.2",
"js-yaml": "^3.13.1",
"lodash": "4.17.21",
"method-override": "^3.0.0",
"mongodb": "6.3.0",
"morgan": "^1.9.1",
"node-uuid": "^1.4.8",
"proxyquire": "^1.8.0",
"queue": "^4.2.1",
"redis": "^3.1.0",
"request": "2.88.2",
"request-promise": "4.2.6"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.2.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-mocha": "^4.12.1",
"jest": "^29.7.0",
"mocha": "^8.2.1",
"mongodb-memory-server": "^9.1.6"
}
}