forked from vue-styleguidist/vue-styleguidist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 KB
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
{
"name": "vue-docgen-api",
"version": "4.15.0",
"description": "Toolbox to extract information from Vue component files for documentation generation purposes.",
"homepage": "https://vue-styleguidist.github.io",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"compile": "tsc -p ./tsconfig.build.json",
"compile:watch": "yarn compile --watch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vue-styleguidist/vue-styleguidist.git"
},
"bugs": {
"url": "https://github.com/vue-styleguidist/vue-styleguidist/issues"
},
"keywords": [
"vue",
"documentation-generation",
"jsdoc",
"parse"
],
"author": "Rafael Escala",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.6.0",
"@babel/types": "^7.6.0",
"ast-types": "^0.12.2",
"hash-sum": "^1.0.2",
"lru-cache": "^4.1.5",
"pug": "^2.0.3",
"recast": "^0.17.3",
"ts-map": "^1.0.3",
"vue-template-compiler": "^2.0.0"
},
"devDependencies": {
"globby": "^10.0.1",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-clickaway": "^2.2.2",
"vue-property-decorator": "^7.3.0",
"vuetify": "^2.2.3"
}
}