-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.82 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
79
80
81
82
83
84
85
86
87
{
"name": "@getjerry/eslint-import-resolver-typescript",
"version": "0.0.0",
"main": "index.js",
"types": "index.d.ts",
"napi": {
"name": "eslint-import-resolver-typescript",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-linux-android",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"x86_64-unknown-linux-musl",
"x86_64-unknown-freebsd",
"i686-pc-windows-msvc",
"armv7-linux-androideabi"
]
}
},
"license": "MIT",
"devDependencies": {
"@mozilla/glean": "^1.1.0",
"@napi-rs/cli": "^2.11.4",
"@types/node": "^16.11.52",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"ava": "^4.3.0",
"dummy.js": "link:dummy.js",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json-schema-validator": "^4.0.1",
"eslint-plugin-jsonc": "^2.4.0",
"eslint-plugin-mdx": "^2.0.2",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js entry.js",
"build:debug": "napi build --platform --js entry.js",
"prepublishOnly": "napi prepublish -t npm",
"test": "run-p test:*",
"watch": "fswatch -o -r ./src | xargs -I {} yarn build",
"version": "napi version",
"test:unit": "ava --timeout=5m",
"test:multipleEslintrcs": "eslint --ext ts,tsx fixtures/multipleEslintrcs",
"test:multipleTsconfigs": "eslint --ext ts,tsx fixtures/multipleTsconfigs",
"test:withJsconfig": "eslint --ext js fixtures/withJsconfig",
"test:withPaths": "eslint --ext ts,tsx fixtures/withPaths",
"test:withPathsAndNestedBaseUrl": "eslint --ext ts,tsx fixtures/withPathsAndNestedBaseUrl",
"test:withQuerystring": "eslint --ext ts,tsx fixtures/withQuerystring",
"test:withoutPaths": "eslint --ext ts,tsx fixtures/withoutPaths"
},
"description": "Rust version of eslint-import-resolver-typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/getjerry/eslint-import-resolver-typescript.git"
},
"author": "eslintplugin",
"bugs": {
"url": "https://github.com/getjerry/eslint-import-resolver-typescript/issues"
},
"homepage": "https://github.com/getjerry/eslint-import-resolver-typescript#readme",
"directories": {
"test": "tests"
},
"dependencies": {
"@napi-rs/cli": "^2.11.4",
"@types/node": "^16.11.52",
"ava": "^4.3.0",
"eslint-import-resolver-typescript": "link:."
},
"keywords": [
"eslint",
"eslintplugin"
]
}