-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.24 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": "code-quality-configs",
"author": {
"name": "Michael Marcenich",
"email": "info@m-squared-solutions.it",
"url": "https://m-squared-solutions.it"
},
"version": "1.0.2",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"lint:check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"mrm": "^1.2.2",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"typescript": "^3.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}