forked from davidneedham/visual-regression-testing-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "backstopjs-node-app",
"version": "1.0.0",
"description": "This repository is an example for the workshop \"Automating your QA with Visual Regression Testing\".",
"main": "src/index.js",
"dependencies": {
"ansi-colors": "^4.1.1",
"backstopjs": "^4.3.2",
"commander": "^3.0.2",
"fancy-log": "^1.3.3",
"inquirer": "^7.0.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-standard": "^4.0.1"
},
"scripts": {
"start": "node index.js",
"lint": "eslint index.js inc",
"lint:fix": "eslint --fix index.js inc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ataylorme/wordcamp-europe-2019-visual-regression-testing-workshop.git"
},
"author": "Andrew Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/ataylorme/wordcamp-europe-2019-visual-regression-testing-workshop/issues"
},
"homepage": "https://github.com/ataylorme/wordcamp-europe-2019-visual-regression-testing-workshop#readme"
}