|
4 | 4 | "description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
|
5 | 5 | "repository": "https://github.com/alexgorbatchev/eslint-import-resolver-typescript",
|
6 | 6 | "author": "Alex Gorbatchev <alex.gorbatchev@gmail.com>",
|
| 7 | + "contributors": [ |
| 8 | + "JounQin <admin@1stg.me>" |
| 9 | + ], |
7 | 10 | "license": "ISC",
|
8 | 11 | "engines": {
|
9 | 12 | "node": ">=4"
|
|
29 | 32 | "build:ts": "tsc -b",
|
30 | 33 | "lint": "run-p lint:*",
|
31 | 34 | "lint:es": "cross-env PARSER_NO_WATCH=true eslint src --cache --ext md,js,ts -f friendly",
|
32 |
| - "lint:tsc": "tsc --noEmit", |
| 35 | + "lint:tsc": "tsc --incremental false --noEmit", |
33 | 36 | "pretest": "r",
|
34 |
| - "test": "cross-env PARSER_NO_WATCH=true eslint tests/**/*.{ts,tsx} --cache -f friendly", |
| 37 | + "test:withPaths": "eslint --ext ts,tsx tests/withPaths", |
| 38 | + "test:withoutPaths": "eslint --ext ts,tsx tests/withoutPaths", |
| 39 | + "test:multipleTsconfigs": "eslint --ext ts,tsx tests/multipleTsconfigs", |
| 40 | + "test": "run-p test:*", |
35 | 41 | "type-coverage": "type-coverage --cache --detail --ignore-catch --strict"
|
36 | 42 | },
|
37 | 43 | "peerDependencies": {
|
|
40 | 46 | },
|
41 | 47 | "dependencies": {
|
42 | 48 | "debug": "^4.1.1",
|
| 49 | + "glob": "^7.1.6", |
43 | 50 | "is-glob": "^4.0.1",
|
44 |
| - "resolve": "^1.12.0", |
45 |
| - "tiny-glob": "^0.2.6", |
| 51 | + "resolve": "^1.15.1", |
46 | 52 | "tsconfig-paths": "^3.9.0"
|
47 | 53 | },
|
48 | 54 | "devDependencies": {
|
49 |
| - "@1stg/lib-config": "^0.1.13", |
| 55 | + "@1stg/lib-config": "^0.4.5", |
50 | 56 | "@types/debug": "^4.1.5",
|
| 57 | + "@types/glob": "^7.1.1", |
51 | 58 | "@types/is-glob": "^4.0.1",
|
52 |
| - "@types/node": "^12.12.7", |
53 |
| - "@types/resolve": "^0.0.8", |
| 59 | + "@types/node": "^13.11.1", |
| 60 | + "@types/resolve": "^1.14.0", |
54 | 61 | "@types/unist": "^2.0.3",
|
55 | 62 | "dummy.js": "link:dummy.js",
|
56 | 63 | "eslint-import-resolver-typescript": "link:.",
|
57 | 64 | "npm-run-all": "^4.1.5",
|
58 |
| - "react": "^16.11.0", |
59 |
| - "type-coverage": "^2.3.0", |
60 |
| - "typescript": "^3.7.2" |
| 65 | + "react": "^16.13.1", |
| 66 | + "type-coverage": "^2.4.2", |
| 67 | + "typescript": "^3.8.3" |
61 | 68 | },
|
62 | 69 | "resolutions": {
|
63 |
| - "@babel/core": "^7.7.2", |
64 | 70 | "eslint-import-resolver-typescript": "link:."
|
65 | 71 | },
|
66 | 72 | "typeCoverage": {
|
|
0 commit comments