-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
package.json
41 lines (41 loc) · 913 Bytes
/
package.json
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
{
"name": "lab-dom-pizza-builder",
"version": "1.0.0",
"license": "UNLICENSED",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll --verbose=false"
},
"devDependencies": {
"jest": "^26.6.3",
"jest-html-reporter": "^3.3.0",
"jest-junit": "^12.0.0",
"jest-puppeteer": "^5.0.3",
"puppeteer": "^9.1.1",
"serve": "^11.3.2"
},
"jest": {
"preset": "jest-puppeteer",
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "Lab Solution",
"outputPath": "lab-solution.html",
"includeFailureMsg": true,
"includeConsoleLog": true
}
]
]
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
}
}