-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@nolawnchairs/eslint-plugin",
"version": "0.1.0",
"description": "ESLint rule to enforce a consistent import order",
"main": "lib/index.js",
"keywords": [],
"author": "Michael Wieczorek <[email protected]>",
"license": "MIT",
"homepage": "https://gihub.com/nolawnchairs/eslint-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nolawnchairs/eslint-plugin.git"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.spec\\.[jt]s$",
"transform": {
"^.+\\.ts$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.ts"
],
"testEnvironment": "node"
},
"scripts": {
"build": "rimraf lib && tsc",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --ext .ts . --fix",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unused-imports": "^3.1.0",
"is-core-module": "^2.13.1",
"minimatch": "^9.0.3"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">= 7.0.0",
"@typescript-eslint/parser": ">= 7.0.0",
"eslint": ">= 8.0.0"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/estree": "^1.0.1",
"@types/is-core-module": "^2.2.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.5.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@typescript-eslint/rule-tester": "^7.2.0",
"@typescript-eslint/utils": "^7.2.0",
"endent": "^2.1.0",
"eslint": "^8.47.0",
"eslint-plugin-local": "^4.2.1",
"jest": "^29.5.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}