forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "@rushstack/eslint-plugin",
"version": "0.12.0",
"description": "An ESLint plugin providing supplementary rules for use with the @rushstack/eslint-config package",
"license": "MIT",
"repository": {
"url": "https://github.com/microsoft/rushstack.git",
"type": "git",
"directory": "eslint/eslint-plugin"
},
"homepage": "https://rushstack.io",
"keywords": [
"eslint",
"eslint-config",
"monorepo",
"rush",
"scalable",
"scale",
"typescript"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@rushstack/tree-pattern": "workspace:*",
"@typescript-eslint/experimental-utils": "~5.59.2"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@rushstack/heft": "0.54.0",
"@rushstack/heft-node-rig": "2.2.6",
"@types/eslint": "8.2.0",
"@types/estree": "0.0.50",
"@types/heft-jest": "1.0.1",
"@types/node": "14.18.36",
"@typescript-eslint/parser": "~5.59.2",
"@typescript-eslint/typescript-estree": "~5.59.2",
"eslint": "~8.7.0",
"typescript": "~5.0.4"
}
}