-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
86 lines (86 loc) · 1.78 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
{
"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 lib/ test/",
"test": "nyc mocha",
"release:version": "npm version",
"release:publish": "npm publish --registry=https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-typescript": "^7.24.6",
"eslint": "^8.57.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": {
"globals": "^13.24.0",
"minimatch": "^9.0.4"
},
"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"
}
}