-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
73 lines (73 loc) · 1.88 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
66
67
68
69
70
71
72
73
{
"name": "vue-unused-components-checker",
"version": "1.1.2",
"description": "Check your Vue project for unused Components",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"test": "jest --config jest.config.ts --passWithNoTests",
"semantic-release": "semantic-release"
},
"bin": {
"check-unused-comp": "dist/index.js"
},
"keywords": [
"check",
"vue",
"unused",
"components"
],
"author": "BerniWittmann <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"commander": "^7.2.0",
"glob": "^7.1.6",
"ora": "^2.0.0",
"rx-text-search": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/BerniWittmann/vue-unused-components-checker.git"
},
"bugs": {
"url": "https://github.com/BerniWittmann/vue-unused-components-checker/issues"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.0",
"@semantic-release/release-notes-generator": "^9.0.0",
"@types/jest": "^25.1.0",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"husky": "^4.0.6",
"jest": "^26.6.3",
"semantic-release": "^17.0.0",
"ts-jest": "^25.1.0",
"ts-node": "^9.1.1",
"typescript": "^3.7.4"
}
}