forked from kentcdodds/eslint-config-kentcdodds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "eslint-config-mavu",
"version": "0.0.0-development",
"description": "Flexible ESLint rules optimized for react & nextjs promotes yaml config",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm-run-all --parallel lint find-new-rules",
"find-new-rules": "npm-run-all --parallel find-new-rules:*",
"find-new-rules:jsx-a11y": "eslint-find-rules --unused ./other/test/jsx-a11y.js",
"find-new-rules:jest": "eslint-find-rules --unused ./other/test/jest.js",
"find-new-rules:main": "eslint-find-rules --unused ./index.js",
"find-new-rules:react": "eslint-find-rules --unused ./other/test/react.js",
"find-new-rules:webpack": "eslint-find-rules --unused ./other/test/webpack.js",
"precommit": "npm run validate",
"validate": "npm t",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/ultrox/eslint-config-mavu.git"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"kentcdodds",
"javascript",
"next",
"nextjs",
"styleguide"
],
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ultrox/eslint-config-mavu/issues"
},
"homepage": "https://github.com/ultrox/eslint-config-mavu#readme",
"dependencies": {
"babel-eslint": "^10.0.0",
"eslint-config-prettier": "^4.0.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.11.1",
"read-pkg-up": "^4.0.0",
"semver": "^5.5.1",
"webpack": "^4.29.0"
},
"peerDependencies": {
"eslint": ">=5"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-find-rules": "^3.3.1",
"husky": "^1.0.0",
"npm-run-all": "^4.1.3",
"semantic-release": "^15.13.3"
}
}