forked from octodemo-forks/ghas-bootcamp-javascript
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.04 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.04 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
{
"name": "ghas-expense-tracker",
"version": "1.0.0",
"description": "A local-only JavaScript expense tracker with intentional GitHub Advanced Security training findings.",
"main": "src/server.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "node src/server.js",
"test": "jest",
"test:coverage": "jest --coverage"
},
"engines": {
"node": ">=18"
},
"keywords": [
"github-advanced-security",
"codeql",
"dependabot",
"secret-scanning",
"code-quality",
"training"
],
"dependencies": {
"axios": "0.21.1",
"ejs": "3.1.6",
"express": "4.17.1",
"lodash": "4.17.20",
"minimist": "0.0.8",
"sqlite3": "5.1.7"
},
"devDependencies": {
"jest": "29.7.0",
"supertest": "6.3.4"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!src/server.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}