-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 991 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
{
"name": "eslint-config-mango",
"version": "0.0.0-semantically-released",
"description": "eslint configuration for mango chutney",
"main": "index.js",
"repository": "[email protected]:mango-chutney/eslint-config-mango.git",
"author": "jasondibenedetto <[email protected]>",
"license": "MIT",
"keywords": [
"eslint",
"eslintconfig"
],
"peerDependencies": {
"eslint": "^4.19.1 || ^5.3.0"
},
"dependencies": {
"babel-eslint": "^10.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
},
"devDependencies": {
"prettier": "1.16.4",
"semantic-release": "15.13.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"scripts": {
"run-prettier": "./scripts/run-prettier.sh",
"lint": "yarn run run-prettier"
}
}