-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 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
{
"name": "codeveros-gateway",
"version": "2.0.0",
"description": "Basic node Gateway for simple, straight docker example",
"main": "src/app.js",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"start": "node src/app.js",
"test": "jest --logHeapUsage --no-cache",
"test-ci": "npx jest --ci --no-cache --coverage --logHeapUsage --reporters=default --reporters=jest-junit",
"checkstyle": "semistandard",
"checkstyle:ci": "mkdirp ./reports && semistandard --verbose | standard-json > ./reports/checkstyle.json",
"checkstyle:fix": "semistandard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com:Coveros/codeveros.git"
},
"author": "",
"dependencies": {
"body-parser": "^2.2.1",
"cors": "^2.8.5",
"deepmerge": "^4.3.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"http-proxy": "^1.18.1"
},
"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"
},
"jest-junit": {
"outputDirectory": "./reports"
}
}