-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 979 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "eslint-config-onefe",
"version": "0.2.0",
"description": "ESLint shareable config for the OneFE JavaScript style guide",
"license": "MIT",
"repository": "onefe/eslint-config-onefe",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"airbnb",
"javascript",
"styleguide",
"google",
"code",
"quality",
"style",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint"
],
"dependencies": {
"eslint-config-airbnb": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^4.1.4",
"eslint": "^1.10.3",
"eslint-config-onefe": "./",
"eslint-plugin-react": "^3.11.3",
"react": "^0.14.3"
},
"peerDependencies": {
"eslint": ">=1.8.0"
}
}