-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
92 lines (92 loc) · 2.48 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
{
"name": "@salesforce/eslint-plugin-lwc-graph-analyzer",
"version": "0.9.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",
"directories": {
"lib": "lib",
"rules": "lib/rules",
"test": "test"
},
"files": [
"/lib",
"!**/test/"
],
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"prettier": "^3.4.2",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-chain": "^1.1.6",
"jest-junit": "^16.0.0",
"jest-sonar-reporter": "^2.0.0",
"eslint": "^8.57.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-eslint-plugin": "^6.4.0",
"chai": "^4.5.0"
},
"dependencies": {
"@komaci/static-analyzer": "^250.0.2",
"@lwc/metadata": "3.5.0-0",
"@lwc/sfdc-compiler-utils": "3.5.0-0",
"@lwc/errors": "~3.5.0",
"@lwc/template-compiler": "~3.5.0",
"@babel/core": "^7.26.0"
},
"scripts": {
"format": "prettier --list-different \"**/*.js\"",
"format:fix": "prettier --write \"**/*.{js,json}\"",
"lint": "eslint lib test",
"test": "yarn jest --coverage"
},
"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"
}
}