-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
107 lines (107 loc) · 3.17 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
107
{
"name": "@salesforce/eslint-plugin-lwc-mobile",
"version": "0.0.1",
"description": "ESLint plugin for LWC mobility",
"contributors": [
{
"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": "Haifeng Li",
"url": "https://github.com/haifeng-li-at-salesforce"
},
{
"name": "Ben Zhang",
"url": "https://github.com/ben-zhang-li-at-salesforce"
}
],
"homepage": "https://github.com/salesforce/eslint-plugin-lwc-mobile",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/eslint-plugin-lwc-mobile"
},
"scripts": {
"clean": "npx rimraf dist reports",
"build": "npm run clean && tsc",
"format": "prettier --list-different \"**/*.{ts,js}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json}\"",
"lint": "eslint src test",
"test": "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"
},
"type": "commonjs",
"main": "dist/index.js",
"files": [
"/dist"
],
"dependencies": {
"@graphql-eslint/eslint-plugin": "^3.20.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/eslint": "^8.56.10",
"@types/estree": "^1.0.6",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.18.0",
"@typescript-eslint/rule-tester": "^7.8.0",
"@typescript-eslint/utils": "^7.8.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^8.57.0",
"eslint-plugin-eslint-plugin": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-chain": "^1.1.6",
"jest-extended": "^4.0.1",
"jest-junit": "^16.0.0",
"jest-mock-extended": "^3.0.7",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^7.8.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"volta": {
"node": "20.18.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}