-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1001 Bytes
/
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
{
"name": "eslint-config-leapfrog",
"version": "3.0.0",
"description": "ESLint config for JavaScript/TypeScript projects at Leapfrog",
"main": "eslint.json",
"repository": "leapfrogtechnology/eslint-config-leapfrog",
"author": "Saugat Acharya <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/leapfrogtechnology/eslint-config-leapfrog",
"bugs": {
"url": "https://github.com/leapfrogtechnology/eslint-config-leapfrog/issues"
},
"files": [
"react.json",
"eslint.json"
],
"scripts": {
"precommit": "yarn lint",
"lint": "eslint -c react.json check.js"
},
"keywords": [
"rules",
"eslint",
"linter",
"leapfrog",
"javascript",
"eslint-plugin",
"eslint-config"
],
"dependencies": {
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-react": "^7.19.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": "^0.14.3"
},
"peerDependencies": {
"eslint": ">= 6.0.0"
}
}