-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "cypress-recurse",
"version": "0.0.0-development",
"description": "A way to re-run Cypress commands until a predicate function returns true",
"main": "src",
"types": "src/index.d.ts",
"files": [
"src",
"commands.js"
],
"scripts": {
"dev": "cypress open",
"test": "cypress run",
"semantic-release": "semantic-release",
"lint": "tsc --pretty --allowJs --strict --noEmit cypress/e2e/**/*.js cypress/e2e/*.js",
"stop-only": "stop-only --folder cypress/e2e",
"build": "run-s lint stop-only",
"print-tests": "find-cypress-specs --names",
"print-tags": "find-cypress-specs --tags",
"badges": "npx -p dependency-version-badge update-badge cypress"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-recurse.git"
},
"keywords": [
"cypress",
"cypress-plugin"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/cypress-recurse/issues"
},
"homepage": "https://github.com/bahmutov/cypress-recurse#readme",
"devDependencies": {
"@types/node": "^18.11.17",
"chai-sorted": "^0.2.0",
"common-tags": "^1.8.2",
"cypress": "13.15.2",
"cypress-command-chain": "1.1.2",
"cypress-if": "^1.12.0",
"cypress-map": "^1.20.1",
"find-cypress-specs": "^1.19.3",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"semantic-release": "24.2.0",
"stop-only": "^3.1.2",
"typescript": "5.5.4"
},
"dependencies": {
"humanize-duration": "^3.27.3"
}
}