This repository has been archived by the owner on May 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "cypress-plugin-retries",
"version": "1.2.2",
"description": "Cypress plugin allowing tests to retry a configurable amount of times",
"main": "lib/support",
"scripts": {
"lint": "eslint --ext json,js,ts .",
"test": "cypress run --spec '**/unit/**'",
"test-e2e": "mocha test/e2e"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"chalk": "^3.0.0"
},
"devDependencies": {
"@babel/code-frame": "^7.5.5",
"@cypress/eslint-plugin-dev": "^4.0.0",
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^8.0.0",
"@types/lodash": "^4.14.138",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"bluebird": "^3.5.5",
"chai": "^4.2.0",
"cypress": "^3.4.1",
"debug": "^4.1.1",
"eslint": "^5.16.0",
"eslint-plugin-cypress": "^2.6.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-mocha": "^6.0.0",
"fast-glob": "^3.0.4",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"husky": "^3.0.5",
"json5": "^2.1.0",
"lint-staged": "^9.2.5",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"semantic-release": "^15.13.24",
"strip-ansi": "^5.2.0",
"typescript": "^3.6.2"
},
"types": "lib/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Bkucera/cypress-plugin-retries.git"
},
"author": "Ben Kucera",
"keywords": [
"cypress",
"plugin",
"retry"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,eslintrc}": [
"eslint --fix",
"git add"
]
}
}