-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "eslint-plugin-react-redux",
"version": "0.0.0-development",
"description": "Enforcing best practices for react-redux",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"react-redux"
],
"author": "diana.suvorova@gmail.com",
"main": "index.js",
"scripts": {
"lint": "eslint ./lib ./tests",
"test": "npm run lint && mocha tests --recursive",
"semantic-release": "semantic-release",
"commitmsg": "npm run test && commitlint -e $GIT_PARAMS"
},
"repository": {
"type": "git",
"url": "https://github.com/DianaSuvorova/eslint-plugin-react-redux"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "^6.26.0",
"eslint": "^8 || ^9",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"semantic-release": "^17.2.3"
},
"peerDependencies": {
"eslint-plugin-react": "^7.35.0",
"eslint": "^7 || ^8 || ^9.7"
},
"engines": {
"node": ">=18.0.0"
},
"license": "ISC",
"directories": {
"test": "tests"
},
"dependencies": {
"eslint-plugin-react": "^7.35.0",
"eslint-rule-composer": "^0.3.0"
}
}