-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.39 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.39 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
{
"name": "@salesforce/eslint-plugin-aura",
"version": "3.0.0",
"description": "ESLint plugin for Aura",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/forcedotcom/eslint-plugin-aura.git"
},
"author": "Marat Vyshegorodtsev <[email protected]>",
"contributors": [
{
"name": "Julien Roche",
"email": "[email protected]",
"url": "https://github.com/rochejul"
}
],
"keywords": [
"eslint",
"eslintplugin"
],
"license": "BSD-3-Clause",
"scripts": {
"prepare": "husky install",
"lint": "eslint lib/ test/",
"format": "prettier --write \"**/*.{js,md}\"",
"format:check": "prettier --check \"**/*.{js,md}\"",
"test": "mocha"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"eslint": "^9.17.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"mocha": "^9.2.1",
"prettier": "^2.5.1"
},
"peerDependencies": {
"eslint": "^9",
"@eslint/js": "^9"
},
"files": [
"lib/"
],
"engines": {
"node": ">=12.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.js": "eslint --fix",
"**/*.{js,md}": "prettier --write"
},
"prettier": {
"singleQuote": true
},
"mocha": {
"recursive": true,
"reporter": "dot"
}
}