mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-06 15:00:50 -05:00
eed699eb6d
* 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
58 lines
1.7 KiB
JSON
58 lines
1.7 KiB
JSON
{
|
|
"name": "@cypress/eslint-plugin-dev",
|
|
"version": "0.0.0-development",
|
|
"description": "Common ESLint rules shared by Cypress development-only packages",
|
|
"main": "./lib",
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,json,.eslintrc .",
|
|
"lint-changed": "node ./lib/scripts/lint-changed",
|
|
"lint-fix": "npm run lint -- --fix",
|
|
"test": "mocha"
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "3.5.5",
|
|
"chalk": "^2.4.2",
|
|
"eslint-rule-composer": "^0.3.0",
|
|
"lodash": "^4.17.15",
|
|
"shelljs": "0.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-json-format": "^2.0.0",
|
|
"eslint-plugin-mocha": "^8.2.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"sinon": "^7.3.2",
|
|
"sinon-chai": "^3.3.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/eslint-parser": "^7.25.1",
|
|
"@typescript-eslint/eslint-plugin": ">= 7.0.0",
|
|
"@typescript-eslint/parser": ">= 7.0.0",
|
|
"eslint": "^= 8.0.0",
|
|
"eslint-plugin-import": ">= 2.0.0",
|
|
"eslint-plugin-json-format": ">= 2.0.0",
|
|
"eslint-plugin-mocha": " >= 8.0.0",
|
|
"eslint-plugin-react": ">= 7.22.0"
|
|
},
|
|
"bin": {
|
|
"lint-changed": "./lib/scripts/lint-changed.js",
|
|
"lint-pre-commit": "./lib/scripts/lint-pre-commit.js"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/eslint-plugin-dev#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Feslint-plugin-dev&template=bug-report.md"
|
|
},
|
|
"keywords": [
|
|
"cypress",
|
|
"eslint",
|
|
"eslintplugin"
|
|
],
|
|
"nx": {}
|
|
}
|