-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "backstop-config",
"description": "sample project with a simple implementation of backstopjs tests",
"version": "1.0.0",
"scripts": {
"backstop:approve": "backstop approve --config=test/mainConfig.js",
"backstop:test": "npm run clean:bitmaps_test && backstop test --config=test/mainConfig.js",
"clean:bitmaps_test": "rm -rf test/backstop_data/bitmaps_test",
"test": "npm run backstop:test",
"test:docker": "npm run clean:bitmaps_test && backstop test --config=test/mainConfig.js --docker"
},
"author": "Walmyr Lima e Silva Filho <wlsf82@gmail.com> (http://walmyr-filho.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wlsf82/backstop-config"
},
"devDependencies": {
"backstopjs": "^5.3.4"
}
}