-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
67 lines (67 loc) · 1.43 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
{
"name": "@salesforce/eslint-plugin-aura",
"version": "2.1.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 <marat@salesforce.com>",
"contributors": [
{
"name": "Julien Roche",
"email": "roche.jul@gmail.com",
"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": "^8.10.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"mocha": "^9.2.1",
"prettier": "^2.5.1"
},
"peerDependencies": {
"eslint": "^7 || ^8"
},
"dependencies": {
"eslint-plugin-compat": "^4.0.2"
},
"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"
}
}