forked from zsoltszavo/eslint-plugin-import-lines
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.58 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "eslint-plugin-import-newlines",
"version": "2.0.0",
"description": "ESLint plugin for enforcing newlines in ES6 import statements past a certain number of items",
"main": "lib/index.js",
"author": {
"name": "SeinopSys",
"email": "david@seinopsys.dev",
"url": "https://seinopsys.dev"
},
"private": false,
"contributors": [
{
"name": "zsoltszavo",
"email": "zsoltszv@gmail.com"
}
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "github:SeinopSys/eslint-plugin-import-newlines"
},
"bin": {
"import-linter": "lib/index.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"lint",
"import"
],
"scripts": {
"lint": "eslint",
"test": "mocha",
"test:watch": "mocha --watch",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@typescript-eslint/parser": "^8.56.0",
"@typescript-eslint/rule-tester": "^8.56.0",
"eslint": "^10.0.0",
"eslint-plugin-eslint-plugin": "^7.3.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0"
},
"peerDependencies": {
"eslint": ">=10.0.0"
},
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"np": {
"releaseDraft": false
}
}