-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 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
{
"private": true,
"name": "jest-puppe-shots-monorepo",
"version": "0.6.0",
"description": "A Jest plugin for creating screenshots of React components with a help of Puppeteer",
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "eslint .",
"release": "lerna publish",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macku/jest-puppe-shots.git"
},
"keywords": [
"jest",
"screenshot",
"snapshot",
"testing",
"unittest",
"react",
"enzyme",
"javascript",
"visual-regression",
"visual-testing",
"matcher",
"jest-matcher",
"unit-testing",
"puppeteer",
"chrome"
],
"author": {
"name": "Maciej Adamczak",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/macku/jest-puppe-shots/issues"
},
"homepage": "https://github.com/macku/jest-puppe-shots#readme",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css": "^2.2.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.1",
"jest-environment-jsdom": "^22.4.1",
"lerna": "^2.9.0"
},
"engines": {
"node": ">= 7.6",
"npm": ">= 5.0.0"
}
}