-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "eslint-plugin-group-import",
"version": "0.0.27",
"description": "eslint plugin for import group",
"main": "config/index.js",
"scripts": {
"dev": "npm run build -- --watch",
"build": "esbuild src/index.js --bundle --platform=node --packages=external --outfile=dist/index.js",
"release": "bumpp package.json --commit --push --tag"
},
"files": [
"config",
"dist"
],
"keywords": [
"eslint",
"eslintplugin",
"import",
"group-import"
],
"author": "AntzyMo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AntzyMo/eslint-plugin-group-import.git"
},
"bugs": {
"url": "https://github.com/AntzyMo/eslint-plugin-group-import/issues"
},
"homepage": "https://github.com/AntzyMo/eslint-plugin-group-import",
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"dependencies": {
"eslint": "^9.0.0",
"local-pkg": "^0.5.0"
},
"devDependencies": {
"@antzy/eslint-config": "latest",
"bumpp": "^9.4.0",
"esbuild": "^0.20.2"
}
}