forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.17 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
{
"name": "@cypress/grep",
"version": "0.0.0-development",
"description": "Filter tests using substring",
"main": "src/support.js",
"scripts": {
"cy:run": "node ../../scripts/cypress.js run --config specPattern='**/unit.js'",
"cy:open": "node ../../scripts/cypress.js open --e2e -b electron --config specPattern='**/unit.js'",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"debug": "^4.3.4",
"find-test-names": "^1.19.0",
"globby": "^11.0.4"
},
"devDependencies": {
"cypress-each": "^1.11.0",
"cypress-expect": "^2.5.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"cypress": ">=10"
},
"files": [
"src"
],
"types": "src/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/cypress.git"
},
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/grep#readme",
"author": "Cypress Tools Team",
"bugs": {
"url": "https://github.com/cypress-io/cypress/issues"
},
"keywords": [
"cypress",
"grep"
],
"publishConfig": {
"access": "public"
},
"nx": {
"implicitDependencies": [
"!cypress"
]
}
}