-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.41 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.41 KB
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
{
"name": "@salesforce/eslint-plugin-lwc-graph-analyzer",
"version": "1.0.0",
"description": "ESLint plugin to analyze data graph in a LWC component",
"contributors": [
{
"name": "Andrew Huffman",
"url": "https://github.com/AndrewHuffman"
},
{
"name": "Kevin Hawkins",
"url": "https://github.com/khawkins"
},
{
"name": "Meisam Seyed Aliroteh",
"url": "https://github.com/maliroteh-sf"
},
{
"name": "Takashi Arai",
"url": "https://github.com/sfdctaka"
},
{
"name": "Dustin Breese",
"url": "https://github.com/dbreese"
}
],
"homepage": "https://github.com/salesforce/eslint-plugin-lwc-graph-analyzer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/eslint-plugin-lwc-graph-analyzer.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"rules": "lib/rules",
"test": "test"
},
"files": [
"lib/**/*",
"!**/test/**"
],
"devDependencies": {
"@eslint/js": "^9.30.1",
"@typescript-eslint/parser": "^8.35.1",
"chai": "^4.5.0",
"eslint": "^9.28.0",
"eslint-plugin-eslint-plugin": "^6.5.0",
"eslint-plugin-n": "^17.20.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-chain": "^1.1.6",
"jest-extended": "^4.0.2",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1"
},
"dependencies": {
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@komaci/static-analyzer": "^252.1.0",
"@lwc/errors": "~3.5.0",
"@lwc/metadata": "3.5.0-0",
"@lwc/sfdc-compiler-utils": "3.5.0-0",
"@lwc/template-compiler": "~3.5.0",
"@types/eslint": "^9.6.1"
},
"scripts": {
"format": "prettier --list-different \"**/*.js\"",
"format:fix": "prettier --write \"**/*.{js,json}\"",
"lint": "eslint",
"test": "yarn jest --coverage",
"prepare": "husky"
},
"jestSonar": {
"sonar56x": true,
"reportPath": "reports/coverage",
"reportFile": "sonar-report.xml",
"indent": 4
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"eslint": ">=7"
},
"volta": {
"node": "20.18.0",
"yarn": "1.22.22"
}
}