-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "@jay-es/eslint-plugin-vue-sort-components",
"version": "0.4.1",
"description": "A plugin for ESLint to keep order of component names",
"main": "lib/index.js",
"files": [
"README.md",
"lib"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "git diff HEAD --exit-code && npm run build",
"prebuild": "node -e \"fs.rmSync('lib/', { recursive: true, force: true })\"",
"build": "tsc",
"format": "prettier --check ./**/*.[jt]s",
"lint": "eslint .",
"test": "mocha",
"test:watch": "mocha --watch --reporter min",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jay-es/eslint-plugin-vue-sort-components.git"
},
"keywords": [
"eslint",
"vue",
"sort",
"components",
"auto-fix",
"order"
],
"author": "jay-es",
"license": "MIT",
"bugs": {
"url": "https://github.com/jay-es/eslint-plugin-vue-sort-components/issues"
},
"homepage": "https://github.com/jay-es/eslint-plugin-vue-sort-components#readme",
"dependencies": {
"natural-compare": "^1.4.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.0",
"@types/eslint": "^8.4.5",
"@types/natural-compare": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.6",
"lint-staged": "^15.0.1",
"mocha": "^11.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}