-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "eslint-plugin-preferred-import",
"version": "1.0.13",
"description": "Lint rule to autofix unpreferred imports",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "tsc -p tsconfig.build.json --build --clean",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronparkdev/eslint-plugin-preferred-import.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"import",
"relative",
"modules",
"autofix"
],
"author": "Sang Min Park (ronparkdev)",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ronparkdev/eslint-plugin-preferred-import/issues",
"email": "ronpark.dev@gmail.com"
},
"homepage": "https://github.com/ronparkdev/eslint-plugin-preferred-import#readme",
"devDependencies": {
"@types/eslint": "^8.4.2",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^13.0.1",
"prettier": "2.6.2",
"ts-jest": "^28.0.3",
"typescript": "^4.7.4"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"dependencies": {
"@typescript-eslint/utils": "^5.27.1",
"micromatch": "^4.0.5"
},
"lint-staged": {
"*.ts": "prettier --write"
}
}