forked from davidneedham/visual-regression-testing-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.28 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
{
"name": "backstopjs-node-app",
"version": "1.0.0",
"description": "This repository is an example for my workshop \"Automating your QA with Visual Regression Testing\" at WordCamp Europe 2019.",
"main": "src/index.js",
"dependencies": {
"backstopjs": "^3.8.8",
"minimist": "^1.2.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"ansi-colors": "^3.2.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-standard": "^4.0.0",
"fancy-log": "^1.3.3",
"rimraf": "^2.6.3"
},
"scripts": {
"build": "rimraf dist/ && rimraf backstop_data/ && npx babel src/ --out-dir dist/",
"start": "node dist/index.js",
"lint": "eslint src"
},
"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"
}