-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "eslint-config-es6-base",
"version": "1.0.3",
"description": "eslint config ready to be used in multiple projects",
"keywords": [
"eslint",
"eslint-config",
"prettier",
"prettier-config"
],
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paschalidi/eslint-config-es6.git"
},
"scripts": {
"test": "(cd example && npm run lint && npm t)"
},
"author": "Stefan Natter",
"license": "MIT",
"bugs": {
"url": "https://github.com/paschalidi/eslint-config-es6/issues"
},
"homepage": "https://github.com/paschalidi/eslint-config-es6#readme",
"peerDependencies": {
"eslint": "^5.13.0",
"prettier": "^1.16.4"
},
"dependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4"
},
"directories": {
"example": "example"
}
}