-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "vue-docgen-vetur",
"version": "0.1.0",
"description": "Generate vetur component data for your vue component library",
"repository": "[email protected]:SmartsquareGmbH/vue-docgen-vetur.git",
"author": "Ruben Gees <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"bin": {
"vue-docgen-vetur": "dist/index.js"
},
"keywords": [
"vue",
"docgen",
"vetur",
"components",
"generator",
"tooling"
],
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"lint": "eslint --ignore-path .gitignore --max-warnings 0 .",
"test": "jest"
},
"dependencies": {
"commander": "^8.3.0",
"fast-glob": "^3.2.7",
"mkdirp": "^1.0.4",
"param-case": "^3.0.4",
"pkginfo": "^0.4.1",
"vue-docgen-api": "^4.41.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/mkdirp": "^1.0.2",
"@types/node": "^16.11.7",
"@types/pkginfo": "^0.4.0",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"exec-sh": "^0.4.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"tmp-promise": "^3.0.3",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}