-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 946 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
{
"name": "eslint-config-sevenval",
"version": "3.0.0",
"description": "A sane JavaScript linter configuration",
"main": "index.js",
"keywords": [
"eslint",
"eslintconfig",
"sevenval"
],
"repository": {
"type": "git",
"url": "[email protected]:sevenval/eslint-config-sevenval.git"
},
"scripts": {
"test": "mocha '__tests__/**/*.spec.js'",
"lint": "eslint index.js es5.js 'rules/**/*' '__tests__/**/*'",
"prepublishOnly": "npm t"
},
"author": "Marvin Hagemeister <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^4.19.1",
"mocha": "^5.2.0",
"prettier": "^1.14.0"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.9.1"
}
}