-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.92 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@isogon/eslint-config",
"version": "0.0.1",
"engines": {
"node": ">=6"
},
"description": "The way all isogon code should look.",
"keywords": [
"isogon",
"eslint",
"config",
"react",
"babel",
"es6"
],
"private": false,
"license": "Unlicense",
"contributors": [
{
"name": "Kegan Myers",
"email": "[email protected]",
"url": "https://keganmyers.com"
}
],
"homepage": "https://github.com/isogon/eslint-config",
"bugs": "https://github.com/isogon/eslint-config/issues",
"main": "index.js",
"scripts": {
"test": "yarn test:before && yarn test:actual",
"test:before": "concurrently \"cd test-main && yarn\" \"cd test-simple && yarn\" \"cd test-tests && yarn\"",
"test:actual": "concurrently \"yarn lint\" \"cd test-main && yarn start\" \"cd test-simple && yarn start\" \"cd test-tests && yarn start\"",
"lint": "eslint .",
"prepublish": "./scripts/setVersion.js"
},
"babel": {
"presets": [
"es2015"
]
},
"peerDependencies": {
"babel-eslint": "^7.0.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "14.0.0",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0"
},
"dependencies": {
"babel-preset-es2015": "^6.22.0"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-register": "^6.22.0",
"concurrently": "^3.1.0",
"eslint": "^3.13.0",
"eslint-config-airbnb": "14.0.0",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"yarn": "^0.19.1"
}
}