-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "@frontendweekly/eslint-config",
"version": "1.0.0",
"description": "eslint config for frontendweekly project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --config index.js .",
"prepare": "husky install"
},
"keywords": [],
"author": "Yuya Saito <[email protected]> (https://github.com/studiomohawk)",
"license": "MIT",
"dependencies": {
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^3.13.0",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jest-dom": "^3.9.2",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^1.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-testing-library": "^4.12.2"
},
"peerDependencies": {
"eslint": "*",
"jest": "*",
"prettier": "*"
},
"devDependencies": {
"eslint": "^7.25.0",
"husky": "^7.0.2",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"eslintConfig": {
"extends": "./index.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/frontendweekly/eslint-config.git"
},
"bugs": {
"url": "https://github.com/frontendweekly/eslint-config/issues"
},
"homepage": "https://github.com/frontendweekly/eslint-config#readme",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}