-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 909 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
{
"name": "@namics/eslint-config",
"version": "0.1.0",
"description": "Default configurations for eslint",
"author": "Simon Mollweide <simon.mollweide@namics.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">= 0.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/namics/eslint-config-namics.git"
},
"bugs": {
"url": "https://github.com/namics/eslint-config-namics/issues"
},
"main": "configurations/es6-browser.js",
"scripts": {
"lint": "eslint ./test",
"test": "eslint ./test"
},
"keywords": [
"code checker",
"code linter",
"code standards",
"code style",
"eslint-config",
"eslint",
"eslintconfig",
"lint",
"es2015",
"react",
"jsx"
],
"dependencies": {
"eslint": "^2.12.0",
"eslint-find-rules": "^1.10.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.0",
"eslint-plugin-react": "^5.1.1"
}
}