forked from effector/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.11 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
{
"name": "eslint-plugin-effector",
"version": "0.6.0",
"description": "Enforcing best practices for Effector",
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"effector"
],
"repository": "effector/eslint-plugin",
"main": "index.js",
"author": "Igor Kamyshev <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^14 || ^16"
},
"devDependencies": {
"@types/react": "^17.0.37",
"@typescript-eslint/experimental-utils": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"clean-publish": "^3.2.0",
"effector": "^22.0.0",
"effector-react": "^22.0.6",
"eslint": "^8.0.0",
"jest": "^27.1.0",
"nano-staged": "^0.5.0",
"react": "^17.0.2",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.4.2"
},
"peerDependencies": {
"effector": "*",
"eslint": "7 || 8"
},
"dependencies": {
"prettier": "^2.3.2"
},
"simple-git-hooks": {
"pre-commit": "yarn nano-staged"
},
"nano-staged": {
"*.{js,ts,md}": "prettier --write"
}
}