-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "eslint-plugin-index",
"version": "1.1.7",
"description": "ESlint rules to ensure the proper usage of index.js files",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"index"
],
"author": "Artem Laman <[email protected]>",
"license": "MIT",
"repository": "https://github.com/artlaman/eslint-plugin-index",
"main": "main.js",
"scripts": {
"publish": "clean-publish",
"lint": "eslint .",
"test": "jest",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"clean-publish": "^4.0.2",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.29.0",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.3.1",
"nano-staged": "^0.8.0",
"prettier": "^2.8.1",
"simple-git-hooks": "^2.8.1"
},
"engines": {
"node": "^14 || ^16 || ^17 || ^18 || ^19 || ^20 || ^21"
},
"peerDependencies": {
"eslint": "7 || 8"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,md}": "prettier --write"
}
}