-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.08 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
{
"name": "goabout-eslint-config",
"version": "1.0.0",
"description": "GoAbout's base JS ESLint config, following our styleguide",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/goabout/goabout-eslint-config"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"airbnb",
"goabout",
"javascript",
"styleguide"
],
"author": "Artem Golovin (https://artemgolovin.com)",
"contributors": [
{
"name": "Jake Teton-Landis",
"url": "https://twitter.com/jitl"
},
{
"name": "Jordan Harband",
"email": "[email protected]",
"url": "http://ljharb.codes"
},
{
"name": "Harrison Shoff",
"url": "https://twitter.com/hshoff"
},
{
"name": "Artem Golovin",
"url": "https://artemgolovin.com"
}
],
"license": "MIT",
"dependencies": {
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.2.0",
"eslint-find-rules": "^1.14.3",
"babel-eslint": "^7.2.2"
},
"engines": {
"node": ">= 4"
}
}