This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.99 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
{
"name": "@sj-distributor/eslint-plugin-react",
"version": "0.7.1",
"description": "ESLint presets for react",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"release": "release-it --no-increment",
"test": "mocha tests --recursive"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.1.0",
"@release-it/conventional-changelog": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"prettier": "^2.6.2",
"mocha": "^10.0.0",
"release-it": "^15.5.0",
"typescript": "^4.8.4"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"license": "MIT",
"repository": "https://github.com/sj-distributor/eslint-plugin-react",
"bugs": {
"url": "https://github.com/sj-distributor/eslint-plugin-react/issues"
},
"homepage": "https://github.com/sj-distributor/eslint-plugin-react#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}