-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "eslint-config-equimper",
"version": "2.2.2",
"description": "Eslint config with less rule for react & react-native working with es7. Base of Airbnb",
"main": "index.js",
"repository": {
"url": "https://github.com/EQuimper/eslint-config-equimper"
},
"bugs": {
"url": "https://github.com/EQuimper/eslint-config-equimper/issues"
},
"scripts": {
"commit": "git-cz",
"test": "node test/test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"index.js",
"rules/*"
],
"author": "Emanuel Quimper <[email protected]> <https://github.com/EQuimper>",
"license": "MIT",
"keywords": [
"eslint",
"eslint-config",
"eslint-es6",
"eslint-es7",
"eslint-react",
"eslint-airbnb",
"eslint-decorator",
"react-native eslint",
"react eslint"
],
"dependencies": {
"babel-eslint": "^8.0.0",
"eslint": "^4.2.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0"
},
"peerDependencies": {
"eslint": ">=4.0.0"
},
"devDependencies": {
"commitizen": "^3.0.0",
"cz-conventional-changelog": "^2.0.0",
"semantic-release": "^15.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}