This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
forked from import-js/eslint-import-resolver-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.05 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
69
70
71
72
73
74
75
76
77
78
{
"name": "eslint-import-resolver-ts",
"version": "0.5.0",
"description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
"repository": "https://github.com/rx-ts/eslint-import-resolver-ts",
"author": "Alex Gorbatchev <[email protected]>",
"contributors": [
"JounQin <[email protected]>"
],
"license": "ISC",
"engines": {
"node": ">=4"
},
"main": "lib/cjs",
"module": "lib",
"es2015": "lib/es2015",
"fesm5": "lib/esm",
"types": "lib",
"files": [
"lib"
],
"keywords": [
"typescript",
"eslint",
"import",
"resolver",
"plugin"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r",
"build:ts": "tsc -b",
"lint": "run-p lint:*",
"lint:es": "cross-env PARSER_NO_WATCH=true eslint src --cache --ext md,js,ts -f friendly",
"lint:tsc": "tsc --incremental false --noEmit",
"postinstall": "yarn-deduplicate",
"prepublishOnly": "yarn build",
"pretest": "r",
"test": "run-p test:*",
"test:multipleTsconfigs": "eslint --ext ts,tsx tests/multipleTsconfigs",
"test:withPaths": "eslint --ext ts,tsx tests/withPaths",
"test:withoutPaths": "eslint --ext ts,tsx tests/withoutPaths",
"type-coverage": "type-coverage --cache --detail --ignore-catch --strict --update"
},
"peerDependencies": {
"eslint": "*",
"eslint-plugin-import": "*"
},
"dependencies": {
"debug": "^4.1.1",
"glob": "^7.1.6",
"is-glob": "^4.0.1",
"resolve": "^1.17.0",
"tsconfig-paths": "^3.9.0"
},
"devDependencies": {
"@1stg/lib-config": "^0.5.5",
"@types/debug": "^4.1.5",
"@types/glob": "^7.1.3",
"@types/is-glob": "^4.0.1",
"@types/node": "^14.0.19",
"@types/resolve": "^1.17.1",
"@types/unist": "^2.0.3",
"dummy.js": "link:dummy.js",
"npm-run-all": "^4.1.5",
"react": "^16.13.1",
"type-coverage": "^2.8.4",
"typescript": "^3.9.6",
"yarn-deduplicate": "^2.0.0"
},
"resolutions": {
"eslint-import-resolver-ts": "link:.",
"prettier": "^2.0.5"
},
"typeCoverage": {
"atLeast": 98.62
}
}