-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
56
57
{
"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": {}
}