-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 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
{
"name": "eslint-plugin-path",
"version": "2.1.0",
"main": "lib/index.js",
"author": "qDanik <qdanik@yandex.ru>",
"license": "MIT",
"homepage": "https://github.com/qDanik/eslint-plugin-path#readme",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"absolute-path",
"path",
"relative-import"
],
"files": [
"lib/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">= 12.22.0"
},
"packageManager": "npm@11.2.0",
"repository": "qDanik/eslint-plugin-path",
"scripts": {
"format": "biome lint --write --unsafe && biome format --write && biome check --write --unsafe",
"build": "rm -rf ./tsconfig.tsbuildinfo && tsc -b",
"pretest": "npm run build",
"type-check": "tsc --noEmit",
"test": "jest --silent --runInBand",
"test:coverage": "jest --silent --runInBand --coverage"
},
"dependencies": {
"@typescript-eslint/types": "^8.29.0",
"@typescript-eslint/utils": "^8.29.0",
"load-tsconfig": "^0.2.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.0",
"@biomejs/biome": "2.3.10",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^22.14.0",
"@typescript-eslint/rule-tester": "^8.29.0",
"eslint": "^9.24.0",
"eslint-doc-generator": "^2.1.2",
"eslint-plugin-eslint-plugin": "^6.4.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"directories": {
"docs": "docs"
}
}