-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "backstop-retry-failed-scenarios",
"version": "1.3.0",
"description": "A wrapper command to retry failed scenario for BackstopJS",
"engines": {
"node": ">=10.18.1"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"author": "hitode909",
"repository": {
"type": "git",
"url": "https://github.com/hitode909/backstop-retry-failed-scenarios.git"
},
"license": "ISC",
"devDependencies": {
"@types/command-line-args": "5.2.0",
"@types/command-line-usage": "5.0.2",
"@types/jest": "26.0.24",
"@types/node": "13.13.46",
"@types/xml2json": "0.11.4",
"eslint-plugin-jest": "25.7.0",
"gts": "3.1.0",
"jest": "27.5.1",
"test-fixture": "2.4.1",
"ts-jest": "27.1.3",
"typescript": "4.6.2"
},
"dependencies": {
"command-line-args": "5.2.1",
"command-line-usage": "6.1.1",
"escape-string-regexp": "4.0.0",
"xml2json": "0.12.0"
},
"bin": {
"backstop-retry-failed-scenarios": "dist/cli.js"
}
}