This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@cypress/eslint-plugin-dev",
"version": "0.0.0-development",
"description": "Common ESLint rules shared by Internal Cypress packages",
"main": "./lib",
"scripts": {
"lint": "eslint --ext .js,json,.eslintrc .",
"lint-changed": "node ./lib/scripts/lint-changed",
"lint-fix": "npm run lint -- --fix",
"semantic-release": "semantic-release",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"bluebird": "^3.5.5",
"chalk": "^2.4.2",
"eslint-rule-composer": "^0.3.0",
"lodash": "^4.17.15",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@cypress/eslint-plugin-dev": "file:./shim",
"@fellow/eslint-plugin-coffee": "^0.4.13",
"@types/chai": "^4.1.7",
"@types/jest": "^24.0.15",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.2",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-plugin-json-format": "^2.0.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^2.7.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"lint-staged": "^9.2.0",
"mocha": "^6.1.4",
"semantic-release": "^15.13.17",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">= 1.11.0",
"@typescript-eslint/parser": ">= 1.11.0",
"babel-eslint": "^7.2.3",
"eslint": ">= 3.2.1",
"eslint-plugin-json-format": ">= 2.0.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.2.1"
},
"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/eslint-plugin-dev.git"
},
"homepage": "https://github.com/cypress-io/eslint-plugin-dev#readme",
"author": "Chris Breiding ([email protected])",
"bugs": {
"url": "https://github.com/cypress-io/eslint-plugin-dev/issues"
},
"keywords": [
"cypress",
"eslint",
"eslintplugin"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,eslintrc}": [
"eslint --fix",
"git add"
]
}
}