-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
130 lines (130 loc) · 3.65 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "jest-puppeteer-react",
"version": "12.0.1",
"description": "screenshot tests for your react components in chromium using puppeteer & jest",
"main": "src/index.js",
"types": "src/index.d.ts",
"bin": {
"jestPuppeteerReactDebug": "./bin/debug.js"
},
"engines": {
"node": ">= 16.1.0"
},
"packageManager": "[email protected]",
"scripts": {
"pretest": "yalc publish && cd example && yalc add jest-puppeteer-react && yarn install",
"test": "cd example && yarn test",
"precommit": "pretty-quick --staged",
"prettier": "prettier --write \"./**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hapag-lloyd/jest-puppeteer-react.git"
},
"keywords": [
"jest",
"react",
"puppeteer",
"test",
"testing"
],
"author": "Ansgar Mertens <[email protected]>",
"contributors": [
"Jan Rosczak <[email protected]>",
"Stefan Schult <[email protected]>",
"Albino Tonnina <https://github.com/albinotonnina>",
"Timo Koenig <https://github.com/kaiserkoenig>",
"Aleksei Androsov <https://github.com/doochik>",
"Mihkel Eidast <https://github.com/mihkeleidast>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hapag-lloyd/jest-puppeteer-react/issues"
},
"homepage": "https://github.com/hapag-lloyd/jest-puppeteer-react#readme",
"dependencies": {
"debug": "^4.3.4",
"docker-cli-js": "^2.10.0",
"expect-puppeteer": "^10.0.0",
"format-util": "^1.0.5",
"glob": "^10.3.12",
"jest-each": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-environment-puppeteer": "^10.0.1",
"jest-image-snapshot": "^6.4.0",
"jest-puppeteer": "^10.0.1",
"lodash": "^4.17.21",
"ora": "5.4.1",
"pretty-format": "^29.7.0"
},
"peerDependencies": {
"jest": "29.x",
"puppeteer": "*",
"react": "18.x",
"react-dom": "18.x",
"webpack": "5.x",
"webpack-dev-server": "4.x"
},
"devDependencies": {
"husky": "^9.0.11",
"mkdirp": "^3.0.1",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"puppeteer": "^22.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.91.0",
"webpack-dev-server": "^5.0.4",
"yalc": "^1.0.0-pre.53"
},
"prettier": {
"tabWidth": 4,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 140,
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json"
}
},
{
"files": "*.md",
"options": {
"parser": "markdown"
}
},
{
"files": "*.ts",
"options": {
"parser": "typescript"
}
},
{
"files": "*.tsx",
"options": {
"parser": "typescript"
}
},
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
},
{
"files": "*.html",
"options": {
"parser": "html"
}
},
{
"files": "*.css",
"options": {
"parser": "css"
}
}
]
}
}