forked from Hilzu/eslint-config-unicorn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 878 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
{
"name": "eslint-config-unicorn",
"description": "An eslint configuration",
"version": "0.2.0",
"main": "index.js",
"license": "MIT",
"keywords": [
"eslint",
"eslintconfig"
],
"homepage": "https://github.com/Hilzu/eslint-config-unicorn",
"repository": {
"type": "git",
"url": "https://github.com/Hilzu/eslint-config-unicorn.git"
},
"bugs": "https://github.com/Hilzu/eslint-config-unicorn/issues",
"scripts": {
"test": "eslint index.js"
},
"peerDependencies": {
"eslint": "^4.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"prettier": "^1.5.3"
},
"devDependencies": {
"eslint": "^4.2.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"rules": {
"sort-keys": "error"
}
}
}