-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "@codeveros/training-service",
"version": "2.0.0",
"description": "Catalog Service API",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"test": "npx jest --logHeapUsage --no-cache",
"test-ci": "npx jest --ci --no-cache --logHeapUsage --reporters=default --reporters=jest-junit --coverage",
"checkstyle": "npx semistandard",
"checkstyle:ci": "mkdirp ./reports && semistandard --verbose | standard-json > ./reports/checkstyle.json",
"checkstyle:fix": "npx semistandard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com:Coveros/codeveros.git"
},
"license": "ISC",
"dependencies": {
"@coveros/codeveros-ms": "^0.6.0-dev"
},
"devDependencies": {
"jest": "^30.0.5",
"jest-junit": "^16.0.0",
"mkdirp": "^3.0.1",
"semistandard": "^17.0.0",
"standard-json": "^1.1.0"
},
"semistandard": {
"env": [
"jest"
]
},
"jest": {
"coverageDirectory": "./reports/coverage",
"testEnvironment": "node"
},
"jest-junit": {
"outputDirectory": "./reports"
}
}