-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.96 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
86
87
88
89
90
91
92
93
94
{
"name": "eslint-plugin-evelyn",
"version": "9.0.0",
"description": "ESLint plugin for my projects with my preferred code style and bugfixes",
"keywords": [
"eslint",
"eslint-config",
"eslint-plugin"
],
"homepage": "https://github.com/evelynhathaway/eslint-plugin-evelyn#readme",
"bugs": {
"url": "https://github.com/evelynhathaway/eslint-plugin-evelyn/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evelynhathaway/eslint-plugin-evelyn.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"main": "./lib/index.js",
"directories": {
"lib": "/lib",
"test": "/test"
},
"files": [
"/lib"
],
"scripts": {
"link": "node ./lib/util/link.js",
"lint": "eslint .",
"prepare": "husky install",
"record-changes": "eslint -c ./changes/record-changes.eslintrc.js ./changes/record-changes.eslintrc.js",
"test": "eslint -c ./test/final-config-array.eslintrc.js ./test/final-config-array.eslintrc.js"
},
"commitlint": {
"extends": "./node_modules/conventional-changelog-evelyn/commitlint.config.js"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"./": "eslint --fix"
},
"release": {
"extends": "conventional-changelog-evelyn/release.config.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"chalk": "^4.1.2",
"commitlint": "^17.6.5",
"conventional-changelog-evelyn": "^1.3.1",
"eslint": "^8.41.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"semantic-release": "^21.0.2",
"sort-package-json": "^2.4.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"@babel/eslint-parser": "^7.14.2",
"@typescript-eslint/eslint-plugin": ">=5.0.0",
"@typescript-eslint/parser": ">=5.0.0",
"eslint": "^8.0.0",
"eslint-import-resolver-typescript": "^3.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-mocha": "^10.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-regexp": "^1.0.0",
"eslint-plugin-testing-library": "^5.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}