-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 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
50
51
52
{
"name": "github-actions-cicd-demo",
"version": "1.0.0",
"description": "Node.js CI/CD lab with GitHub Actions, Docker Buildx, GHCR, ESLint SARIF, and Trivy scanning",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint --config eslintrc.json src tests",
"lint:fix": "eslint --config eslintrc.json src tests --fix",
"dev": "node src/app.js"
},
"keywords": [
"ci",
"cd",
"github-actions",
"nodejs",
"docker",
"ghcr",
"trivy",
"testing"
],
"author": "Adeleke Dare",
"license": "MIT",
"dependencies": {
"express": "^5.1.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^30.1.3",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
}
}