-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 913 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 913 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "todo-app",
"version": "0.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest --coverage",
"docs": "npx jsdoc -c jsdoc.json"
},
"author": "Jake Beamish",
"license": "UNLICENSED",
"description": "",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^4.0.1",
"jsdoc": "^4.0.4",
"prettier": "3.5.1"
},
"jest": {
"coverageDirectory": "reports/coverage",
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"outputPath": "reports/test-report.html",
"includeFailureMsg": true
}
]
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"dotenv": "^16.4.7"
}
}