forked from meteorlxy/eslint-plugin-prettier-vue
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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
64
65
{
"name": "eslint-plugin-prettier-vue-scorpionknifes",
"version": "3.0.1",
"description": "ESLint plugin for Prettier formatting, which is better for Vue SFC",
"homepage": "https://github.com/meteorlxy/eslint-plugin-prettier-vue",
"repository": "https://github.com/scorpionknifes/eslint-plugin-prettier-vue",
"license": "MIT",
"author": "meteorlxy <[email protected]>",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc -b",
"clean": "rimraf ./lib *.tsbuildinfo",
"dev": "tsc -b --watch",
"lint": "eslint --ext .ts ./src",
"prepublishOnly": "npm run clean && npm run build",
"publish": "git push origin main --tags",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{json,md,yml}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "@meteorlxy/prettier-config",
"dependencies": {
"@vue/compiler-sfc": "^3.0.0",
"chalk": "^4.0.0",
"prettier": "^2.0.0",
"prettier-linter-helpers": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@meteorlxy/eslint-config-prettier": "^2.0.0",
"@meteorlxy/eslint-config-prettier-typescript": "^2.1.0",
"@meteorlxy/prettier-config": "^2.0.0",
"@types/eslint": "^7.2.0",
"@types/node": "^14.0.27",
"@types/prettier": "^2.0.2",
"@types/prettier-linter-helpers": "^1.0.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.24.0",
"eslint-plugin-self": "^1.2.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"sort-package-json": "^1.49.0",
"typescript": "^4.2.4"
}
}