This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
106 lines (106 loc) · 2.63 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "eslint-plugin-sonarjs",
"version": "1.0.4",
"description": "SonarJS rules for ESLint",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"repository": "git@github.com:SonarSource/eslint-plugin-sonarjs.git",
"license": "LGPL-3.0-only",
"keywords": [
"sonarjs",
"eslint",
"eslintplugin"
],
"bugs": {
"url": "https://github.com/SonarSource/eslint-plugin-sonarjs/issues"
},
"homepage": "https://github.com/SonarSource/eslint-plugin-sonarjs",
"engines": {
"node": ">=16"
},
"files": [
"lib",
"LICENSE"
],
"scripts": {
"build": "rimraf lib && tsc -d -p src",
"test": "jest",
"ruling": "ts-node --files ruling/index.ts",
"precommit": "pretty-quick --staged",
"prepare": "husky install .husky",
"prepack": "npm run build",
"format": "prettier --write .",
"check-format": "prettier --list-different ."
},
"peerDependencies": {
"eslint": "^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/eslint-parser": "7.24.1",
"@babel/plugin-proposal-export-default-from": "7.24.1",
"@babel/plugin-proposal-function-bind": "7.24.1",
"@babel/preset-env": "7.24.4",
"@babel/preset-flow": "7.24.1",
"@babel/preset-react": "7.24.1",
"@types/eslint": "8.56.10",
"@types/eslint-ruling": "npm:@types/eslint@^8.56.10",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.0",
"@types/minimist": "1.2.5",
"@types/node": "20.12.7",
"@typescript-eslint/parser": "7.7.1",
"@typescript-eslint/rule-tester": "7.7.1",
"@typescript-eslint/utils": "7.7.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-notice": "0.9.10",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-ruling": "npm:eslint@8.57.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-sonar-reporter": "2.0.0",
"lodash": "4.17.21",
"minimist": "1.2.8",
"prettier": "3.2.5",
"pretty-quick": "4.0.0",
"rimraf": "5.0.5",
"semver": "^7.6.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"jest": {
"roots": [
"tests",
"src"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"babelConfig": false
}
]
},
"testMatch": [
"<rootDir>/tests/**/*.test.ts"
]
}
}