-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.15 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
{
"name": "eslint-config-himynameisdave",
"version": "10.0.0-alpha.0",
"description": "🗒️ An opinionated ESLint config by and for himynameisdave",
"main": "configurations/core.js",
"scripts": {
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"find-rules": "eslint-find-rules --unused ./configurations/all.js",
"find-rules:pretty": "npm run find-rules 2>&1 | awk '/unused rules/{flag=1; next} flag' | grep -vE \"error|info|yarn run v|Done in|^[[:space:]]*$\"",
"print-config": "eslint --print-config index.js > config-full.json",
"test": "npm run find-rules && npm run lint",
"test:od": "npm outdated && npm run find-rules && npm run lint",
"release": "np"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-unicorn": "^52.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-find-rules": "^4.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"np": "^10.0.3",
"svelte": "^4.2.12",
"typescript": "^5.4.4"
},
"files": [
"configurations/*",
"rules/**/*"
],
"engines": {
"node": ">= 20.9.0"
},
"lint-staged": {
"*.js": "eslint ./ --fix --quiet"
},
"keywords": [
"eslint",
"eslint config",
"lint",
"linter",
"lint rules",
"code checker",
"code linter",
"code standards",
"code style",
"eslint-config",
"style checker",
"style linter"
],
"author": {
"name": "Dave Lunny",
"email": "d@velunny.com",
"url": "https://himynameisdave.com"
},
"license": "MIT",
"homepage": "https://github.com/himynameisdave/eslint-config-himynameisdave#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/himynameisdave/eslint-config-himynameisdave.git"
},
"private": false
}