-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 973 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
{
"name": "my.jest-puppeteer",
"version": "1.0.0",
"description": "Sandbox for working with Jest and Puppeteer",
"scripts": {
"test": "jest --forceExit",
"lint": "eslint jest*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/munderseth/my.jest-puppeteer.git"
},
"keywords": [
"jest",
"jest-puppeteer",
"puppeteer",
"jest-image-snapshot",
"testspace",
"examples"
],
"author": "Mark Underseth (https://github.com/munderseth)",
"license": "MIT",
"bugs": {
"url": "https://github.com/munderseth/my.jest-puppeteer/issues"
},
"homepage": "https://github.com/munderseth/my.jest-puppeteer#readme",
"devDependencies": {
"eslint": "^8.28.0",
"jest-image-snapshot": "6.x",
"jest-junit": "16.x",
"jest": "^29.6.2",
"jest-puppeteer": "^9.0.0",
"puppeteer": "^21.0.2"
},
"jest-junit": {
"addFileAttribute": "true",
"includeShortConsoleOutput": "true"
}
}