-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 960 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 960 Bytes
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
{
"name": "devsecops",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "commonjs",
"scripts": {
"start": "node server.js",
"test": "jest --runInBand --coverage",
"ci:test": "jest --runInBand --ci --coverage --reporters=default --reporters=jest-junit --outputFile=reports/junit/junit.xml",
"ci:security:audit": "mkdir -p reports/security && npm audit --json > reports/security/npm-audit.json || true",
"ci:security:summary": "node scripts/generate-security-summary.js reports/security/npm-audit.json > reports/security/SECURITY_SUMMARY.md",
"ci:security": "npm run ci:security:audit && npm run ci:security:summary"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.12.2",
"express": "^5.1.0",
"newrelic": "^13.4.0",
"nock": "^14.0.10"
},
"devDependencies": {
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"supertest": "^7.1.4"
}
}