-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "@salesforce/eslint-plugin-lightning",
"version": "1.0.0",
"description": "Collection of ESLint rules for Salesforce Lightning platform",
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint lib/ test/",
"format": "prettier --write \"**/*.{js,md}\"",
"format:check": "prettier --check \"**/*.{js,md}\"",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/salesforce/eslint-plugin-lightning"
},
"keywords": [
"eslint",
"eslint-plugin",
"salesforce",
"lightning"
],
"license": "MIT",
"devDependencies": {
"eslint": "^8.29.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"prettier": "^2.8.1"
},
"peerDependencies": {
"eslint": "^7 || ^8"
},
"files": [
"lib/"
],
"lint-staged": {
"**/*.js": "eslint --fix",
"**/*.{js,md}": "prettier --write"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"tabWidth": 4,
"trailingComma": "all"
},
"mocha": {
"recursive": true,
"reporter": "dot"
}
}