-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.85 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
{
"author": "Trevor Burnham (https://trevorburnham.com)",
"name": "eslint-plugin-debarrel",
"version": "0.5.2",
"description": "ESLint plugin to transform barrel imports into direct imports",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TrevorBurnham/eslint-plugin-debarrel.git"
},
"homepage": "https://github.com/TrevorBurnham/eslint-plugin-debarrel",
"bugs": {
"url": "https://github.com/TrevorBurnham/eslint-plugin-debarrel/issues"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run typecheck && npm run format && tsup",
"typecheck": "tsc --noEmit",
"format": "eslint . --fix && prettier . --log-level warn --write",
"test": "vitest --run",
"test:eslint8": "npm run build && node test/eslint8/test.js",
"test:eslint9": "npm run build && node test/eslint9/test.js",
"test:all": "vitest --run && npm run test:eslint8 && npm run test:eslint9",
"release": "npm run test:all && np"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"barrel",
"imports"
],
"license": "MIT",
"devDependencies": {
"@types/eslint": "^8.56.12",
"@types/node": "^20.19.11",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@typescript-eslint/rule-tester": "^8.40.0",
"eslint": "^8.57.1",
"eslint9": "npm:eslint@^9.34.0",
"np": "^10.2.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"eslint": ">=8.0.0"
}
}