Files
cypress/npm/grep/package.json
Bill Glesias eed699eb6d chore: update lerna to 8.1.8 from 6.6.2 (#30436)
* fix sync script with updateds npm-packlist

* chore: update lerna from 6.6.2 to 8.1.8 and ran lerna repair

* chore: pin typescript to ~5.4.5 to avoid importsNotUsedAsValues that was removed in 5.5 and edit workflows and scripts to correctly scope learna packages on v8 snapshot tests [run ci]

* fix indentation in comments

* remove console.log reference to print current package directory in sync exported npm with cli script
2024-10-22 14:46:46 -04:00

50 lines
1.1 KiB
JSON

{
"name": "@cypress/grep",
"version": "0.0.0-development",
"description": "Filter tests using substring",
"main": "src/support.js",
"scripts": {
"cy:open": "node ../../scripts/cypress.js open --e2e -b electron --config specPattern='**/unit.js'",
"cy:run": "node ../../scripts/cypress.js run --config specPattern='**/unit.js'",
"lint": "eslint . --ext .js,.ts"
},
"dependencies": {
"debug": "^4.3.4",
"find-test-names": "^1.28.18",
"globby": "^11.0.4"
},
"devDependencies": {
"cypress-each": "^1.11.0",
"cypress-expect": "^2.5.3",
"typescript": "~5.4.5"
},
"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",
"bugs": {
"url": "https://github.com/cypress-io/cypress/issues"
},
"keywords": [
"cypress",
"grep"
],
"publishConfig": {
"access": "public"
},
"nx": {
"implicitDependencies": [
"!cypress"
]
}
}