-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "eslint-plugin-feature-sliced-design",
"version": "1.11.1",
"description": "Plugin for feature-sliced designed projects",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"fsd",
"feature-sliced design"
],
"author": "Eugene Skrobov",
"repository": {
"type": "git",
"url": "https://github.com/nadProg/eslint-plugin-feature-sliced-design.git"
},
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "eslint \"**/*.js\"",
"lint:fix": "npm run lint --fix",
"test": "mocha tests --recursive"
},
"dependencies": {
"micromatch": "4.0.8",
"requireindex": "1.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-eslint-plugin": "5.5.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"globals": "15.14.0",
"mocha": "11.1.0"
},
"peerDependencies": {
"eslint": "^7"
},
"engines": {
"node": ">= 18.0.0"
},
"license": "ISC"
}