forked from gajus/eslint-config-canonical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.78 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
82
83
84
{
"author": {
"email": "[email protected]",
"name": "Gajus Kuizinas",
"url": "http://gajus.com"
},
"dependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@next/eslint-plugin-next": "^14.2.7",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-canonical": "^5.0.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "npm:eslint-plugin-import-x@^4.1.0",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-modules-newline": "0.0.6",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-perfectionist": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-b57d2823-20240822",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-yml": "^1.14.0",
"eslint-plugin-zod": "^1.4.0",
"globals": "^15.9.0",
"graphql": "^16.9.0",
"prettier": "^3.3.3",
"ramda": "^0.30.1",
"yaml-eslint-parser": "^1.2.3"
},
"description": "Canonical ESLint Shareable Config",
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^10.1.7",
"@semantic-release/npm": "^12.0.1",
"ava": "^6.1.3",
"eslint": "^9.9.1",
"got": "^14.4.2",
"husky": "^9.1.5",
"semantic-release": "^24.1.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"eslint",
"config",
"canonical"
],
"license": "BSD-3-Clause",
"main": "./eslintrc.js",
"name": "eslint-config-canonical",
"peerDependencies": {
"eslint": "^9"
},
"repository": {
"type": "git",
"url": "https://github.com/gajus/eslint-config-canonical"
},
"scripts": {
"build": "true",
"compare": "(cd compare; node compare.js)",
"find-deprecated": "(cd compare; node find-deprecated.js)",
"generate-typescript-compatibility-rules": "node bin/generate-typescript-compatibility-rules.js > configurations/typescript-compatibility.js && eslint configurations/typescript-compatibility.js --fix",
"lint": "eslint --report-unused-disable-directives .",
"setup-dev": "(npm link; cd compare; npm install; npm link eslint-config-canonical; node compare.js)",
"test": "ava --verbose --serial"
},
"version": "1.0.0"
}