-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.28 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.28 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
{
"name": "@lwc/eslint-plugin-lwc",
"version": "1.8.2",
"license": "MIT",
"description": "Official ESLint rules for LWC",
"keywords": [
"eslint",
"eslint-plugin",
"lwc",
"salesforce"
],
"main": "lib/index.js",
"scripts": {
"prepare": "husky || true",
"format": "prettier --write --ignore-path .gitignore \"**/*.{js,md}\"",
"format:check": "prettier --check --ignore-path .gitignore \"**/*.{js,md}\"",
"lint": "eslint force-app/**/default/lwc/**/*.js",
"test": "nyc mocha",
"release:version": "npm version",
"release:publish": "npm publish --registry=https://registry.npmjs.org",
"test:unit": "sfdx-lwc-jest",
"test:unit:debug": "sfdx-lwc-jest --debug",
"test:unit:watch": "sfdx-lwc-jest --watch"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-typescript": "^7.24.6",
"@locker/eslint-config-locker": "^0.25.7",
"@lwc/eslint-plugin-lwc": "^2.2.0",
"@salesforce/eslint-config-lwc": "^3.7.2",
"@salesforce/eslint-plugin-lightning": "^1.0.1",
"@salesforce/sfdx-lwc-jest": "^7.1.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"semver": "^7.6.0"
},
"dependencies": {
"@locker/eslint-plugin-locker": "^0.25.7",
"globals": "^13.24.0",
"minimatch": "^10.2.1"
},
"peerDependencies": {
"@babel/eslint-parser": "^7",
"eslint": "^7 || ^8"
},
"repository": {
"type": "git",
"url": "https://github.com/salesforce/eslint-plugin-lwc.git"
},
"engines": {
"node": ">=10.0.0"
},
"volta": {
"node": "20.12.2",
"yarn": "1.22.22"
},
"files": [
"lib"
],
"lint-staged": {
"*.js": [
"eslint"
],
"*.{js,md}": [
"prettier --write"
]
},
"mocha": {
"recursive": true,
"reporter": "dot",
"slow": 150
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 93,
"statements": 93,
"functions": 88,
"reporter": [
"html",
"text"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all"
}
}