-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.05 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
{
"main": "build/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf build",
"husky": "is-ci || husky install",
"prepare": "npm run husky && npm run clean && npm run build",
"test": "jest",
"coverage": "jest --coverage"
},
"files": [
"build"
],
"imports": {
"#src/*": "./build/*.js"
},
"dependencies": {
"fs-extra": "^10.0.1",
"micromatch": "^4.0.0",
"slash": "^3.0.0",
"tsconfig-paths": "^4"
},
"peerDependencies": {
"eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8.40.0 || ^9 || ^10"
},
"devDependencies": {
"@babel/types": "^7.17.0",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@eslint/compat": "^1",
"@limegrass/eslint-plugin-import-alias": "file:./build",
"@types/eslint": "^9",
"@types/estree": "^1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.14",
"@types/json-schema": "^7.0.11",
"@types/micromatch": "^4.0.2",
"@types/node": "^18",
"@types/prettier": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^9",
"eslint-config-prettier": "^9",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"lint-staged": "^12.3.5",
"prettier": "^3",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"repository": {
"url": "https://github.com/Limegrass/eslint-plugin-import-alias",
"type": "git"
},
"name": "@limegrass/eslint-plugin-import-alias",
"version": "1.6.1",
"description": "Rewrite imports to TSConfig aliases",
"author": "Limegrass",
"license": "MIT"
}