-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "@bahmutov/cy-grep",
"version": "0.0.0-development",
"description": "Filter Cypress tests using title or tags",
"main": "src/support.js",
"scripts": {
"cy:run": "cypress run --config specPattern='**/unit.js'",
"cy:open": "cypress open --e2e -b electron --config specPattern='**/unit.js'",
"cy:open:tags": "cypress open --e2e -b electron --config specPattern='cypress/e2e/test-tags/*.cy.js'",
"badges": "npx -p dependency-version-badge update-badge cypress",
"semantic-release": "semantic-release",
"deps": "npm audit --report --omit dev",
"stop-only": "stop-only --folder cypress/e2e"
},
"dependencies": {
"cypress-plugin-config": "^1.2.0",
"debug": "^4.3.2",
"find-cypress-specs": "^1.35.1",
"find-test-names": "1.29.1",
"globby": "^11.1.0"
},
"devDependencies": {
"cypress": "13.17.0",
"cypress-each": "^1.11.0",
"cypress-expect": "^3.1.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"stop-only": "^3.3.1",
"typescript": "^5.0.0"
},
"peerDependencies": {
"cypress": ">=8"
},
"files": [
"src"
],
"types": "src/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cy-grep.git"
},
"homepage": "https://github.com/bahmutov/cy-grep",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": {
"url": "https://github.com/bahmutov/cy-grep/issues"
},
"keywords": [
"cypress",
"grep"
],
"publishConfig": {
"access": "public"
}
}