-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "eslint-sonarjs",
"version": "0.0.0",
"type": "module",
"repository": "git+https://github.com/un-ts/eslint-plugin-sonar.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"SonarJS",
"eslint-plugin-sonar"
],
"packageManager": "[email protected]",
"scripts": {
"build": "run-s build:lib build:readme",
"build:lib": "rollup -c",
"build:readme": "node scripts/readme.js",
"clean": "rimraf eslint-plugin-sonar/lib",
"codesandbox:install": "git submodule update --init && yarn",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache --max-warnings 10 -f friendly",
"lint:tsc": "tsc --noEmit",
"prepare": "patch-package && simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
"release": "node scripts/private.js && changeset publish",
"test": "node eslint-plugin-sonar",
"typecov": "type-coverage"
},
"devDependencies": {
"@1stg/common-config": "^10.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-json": "^6.1.0",
"eslint-define-config": "^2.1.0",
"globals": "^15.2.0",
"minimatch": "^9.0.3",
"patch-package": "^8.0.0",
"rollup": "^4.17.2",
"rollup-plugin-ts": "^3.4.5",
"type-coverage": "^2.27.1",
"yarn-deduplicate": "^6.0.2"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/experimental-utils": "^5.62.0",
"@typescript-eslint/parser": "^7.8.0",
"@typescript-eslint/scope-manager": "^7.8.0",
"@typescript-eslint/type-utils": "^7.8.0",
"@typescript-eslint/utils": "^7.8.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
"eslint-plugin-sonar": "link:eslint-plugin-sonar",
"eslint-plugin-sonarjs": "^1.0.3",
"prettier": "^3.2.5",
"tmp": "^0.2.1"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreCatch": true,
"ignoreFiles": [
"SonarJS/**/*"
],
"ignoreNonNullAssertion": true,
"strict": true,
"update": true
}
}