-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2 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
{
"name": "cix",
"version": "2.7.4",
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"main": "./src/index.js",
"overrides": {
"bats-support": "0.3.0",
"marked": "4.3.0",
"got": "12.6.0",
"qs": "6.11.1"
},
"scripts": {
"itest": "bats test/integration",
"clean": "rm -rf .scannerwork coverage node_modules logs test-report.xml",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"preview-docs": "docsify serve docs",
"test": "jest --silent src",
"prepare": "husky install"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"lcov",
"text"
],
"testResultsProcessor": "jest-sonar-reporter",
"setupFilesAfterEnv": [
"<rootDir>/test/setup-test-logger.js"
]
},
"dependencies": {
"ajv": "8.12.0",
"axios": "1.3.4",
"chalk": "4.1.2",
"commander": "10.0.0",
"deepdash": "5.3.9",
"dockerode": "3.3.5",
"ejs": "3.1.9",
"express": "4.18.2",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"qs": "6.11.1",
"readline-sync": "1.4.10",
"swagger-client": "3.18.5",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "4.6.2",
"tar-stream": "3.0.0",
"uuid": "9.0.0",
"winston": "3.8.2"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/eslint-parser": "7.21.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/preset-env": "7.20.2",
"babel-jest": "29.5.0",
"bats": "1.9.0",
"bats-assert": "2.0.0",
"bats-support": "0.3.0",
"docsify-cli": "4.4.4",
"eslint": "8.36.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-jsdoc": "^46.4.4",
"got": "12.6.0",
"husky": "^8.0.3",
"jest": "29.3.1",
"jest-cli": "29.3.1",
"jest-sonar-reporter": "2.0.0",
"jsdoc": "4.0.2",
"marked": "4.3.0",
"strip-ansi": "6.0.1",
"supertest": "6.3.3"
},
"volta": {
"node": "16.20.0"
}
}