-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "eslint-config-begin",
"version": "0.2.0",
"description": "ESLint configuration recommended by Begin LLC",
"main": "index.js",
"scripts": {
"start": "npm run lint",
"lint": "eslint . --fix",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beg-in/eslint-config-begin.git"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": "Cody Sherman <[email protected]> (https://codysherman.com)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Beg-in/eslint-config-begin/issues"
},
"homepage": "https://github.com/Beg-in/eslint-config-begin#readme",
"devDependencies": {
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}