-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 810 Bytes
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
{
"name": "backstopJS-generator",
"version": "1.1.0",
"description": "Node application to generate backstop config",
"main": "index.js",
"repository": "git@github.com:gauravgoyal/backstopJS-generator.git",
"author": "Gaurav Goyal",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"backstopjs": "^6.3.25",
"cheerio": "^1.0.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"jest": "^29.7.0"
},
"scripts": {
"test": "jest",
"generate-config": "backstop init && node backstopjs-generator.js",
"test-backstop": "backstop test --configPath=backstop.json",
"approve-backstop": "backstop approve --configPath=backstop.json",
"reference-backstop": "backstop reference --configPath=backstop.json"
},
"jest": {
"testEnvironment": "node"
}
}