This repository has been archived by the owner on Mar 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
73 lines (73 loc) · 1.87 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-docgen-api",
"version": "0.0.0-development",
"description": "Toolbox to extract information from Vue component files for documentation generation purposes.",
"bugs": {
"url": "https://github.com/vue-styleguidist/vue-docgen-api/issues"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"lint": "tslint -p . --fix",
"format": "prettier --write */**/*.ts",
"compile": "tsc -p ./tsconfig.build.json",
"prepublishOnly": "npm run compile",
"test": "npm run unit --collectCoverage && npm run e2e",
"unit": "jest --config ./jest.unit.config.js ",
"e2e": "jest --config ./jest.e2e.config.js "
},
"files": [
"dist",
"config.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vue-styleguidist/vue-docgen-api.git"
},
"keywords": [
"vue",
"documentation-generation",
"jsdoc",
"parse"
],
"author": "Rafael Escala",
"license": "MIT",
"homepage": "https://github.com/vue-styleguidist/vue-docgen-api#readme",
"dependencies": {
"@babel/parser": "^7.2.3",
"@babel/types": "^7.0.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",
"typescript": "^3.2.2",
"vue": "^2.6.3",
"vue-template-compiler": "^2.6.3"
},
"devDependencies": {
"@types/htmlparser2": "^3.7.31",
"@types/jest": "^23.3.10",
"@types/node": "^10.12.18",
"@types/pug": "^2.0.4",
"jest": "^24.1.0",
"lint-staged": "^7.2.0",
"prettier": "^1.14.2",
"ts-jest": "^24.0.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.17.0",
"vue-property-decorator": "^7.2.0"
},
"lint-staged": {
"*.ts": [
"tslint -p . --fix",
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
}
}