-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "docs-differ",
"version": "1.1.0-alpha",
"description": "Crawls and visually diffs two websites, built for @adobe/react-spectrum docs site.",
"license": "Apache-2.0",
"homepage": "https://github.com/ktabors/docs-differ",
"bugs": "https://github.com/ktabors/docs-differ/issues",
"repository": {
"url": "https://github.com/ktabors/docs-differ",
"type": "git"
},
"scripts": {
"clean": "rm -rf node_modules",
"run-differ": "node src/differ.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"diff-base": "./scripts/generateDiff.sh"
},
"dependencies": {
"@adobe/react-spectrum": "latest",
"@react-spectrum/card": "3.0.0-alpha.1",
"@react-spectrum/actionbar": "3.0.0-alpha.7",
"puppeteer": "^10.4.0",
"puppeteer-cluster": "^0.22.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"screenshots-diff": "^1.2.6"
},
"devDependencies": {
"nodemon": "1.18.4"
},
"keywords": [
"website visual differ"
],
"bin": {
"docs-differ": "src/differ.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}