-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "eslint-config-fullstack",
"version": "6.0.0",
"description": "a complete starter ESLint config file to help students avoid errors and learn best practices",
"main": "index.js",
"scripts": {
"lint": "eslint ./ --ignore-path .gitignore",
"lint-fix": "npm run lint -- --fix",
"prettify": "prettier --write \"**/*.{js,json,md}\"",
"test": "mocha"
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"npm run lint-fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/FullstackAcademy/eslint-config-fullstack.git"
},
"keywords": [
"eslint",
"eslintconfig",
"eslintrc",
"linter",
"lint",
"fullstack",
"gracehopper",
"academy",
"fsa",
"fs",
"gha",
"gh",
"educational"
],
"author": "Gabriel Lebec <[email protected]> (https://github.com/glebec)",
"license": "MIT",
"bugs": {
"url": "https://github.com/FullstackAcademy/eslint-config-fullstack/issues"
},
"homepage": "https://github.com/FullstackAcademy/eslint-config-fullstack#readme",
"devDependencies": {
"babel-eslint": "^8.2.6",
"chai": "^4.1.2",
"eslint": "~5.0.1",
"eslint-plugin-react": "~7.10.0",
"lint-staged": "^7.0.3",
"mocha": "^5.0.5",
"prettier": "^1.11.1"
},
"peerDependencies": {
"eslint": "^5.0.1",
"eslint-plugin-react": "^7.10.0",
"babel-eslint": "^8.2.6"
},
"dependencies": {}
}