-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 797 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 797 Bytes
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
{
"name": "eslint-config-coderdojo",
"version": "1.0.6",
"description": "ESLint config used by CoderDojo, based of airbnb styleguide with modifications for seneca",
"main": "index.js",
"author": "coderdojo",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix"
},
"peerDependencies": {
"eslint": "^4.6.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0"
},
"dependencies": {
"eslint-config-airbnb": "^15.1.0"
},
"devDependencies": {
"eslint": "^4.6.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0"
}
}