-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
85 lines (85 loc) · 2.81 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
85
{
"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.15",
"@stylistic/eslint-plugin": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitest/eslint-plugin": "^1.1.25",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-canonical": "^5.1.3",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "npm:eslint-plugin-import-x@^4.6.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-lodash": "^8.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-modules-newline": "0.0.6",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-yml": "^1.16.0",
"eslint-plugin-zod": "^1.4.0",
"globals": "^15.14.0",
"graphql": "^16.10.0",
"prettier": "^3.4.2",
"ramda": "^0.30.1",
"yaml-eslint-parser": "^1.2.3"
},
"description": "Canonical ESLint Shareable Config",
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"ava": "^6.2.0",
"eslint": "^9.18.0",
"got": "^14.4.5",
"husky": "^9.1.7",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3"
},
"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"
}