-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "jsdoc-vuejs",
"version": "0.0.0-development",
"description": "A JSDoc plugin for documenting vue 3 files.",
"main": "index.js",
"files": [
"lib",
"config.js"
],
"scripts": {
"test": "jest",
"lint": "eslint --ext .js index.js config.js lib __tests__ cypress",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/Kocal/jsdoc-vuejs"
},
"keywords": [
"jsdoc",
"vuejs",
"vue component",
"vue file",
"vue 3"
],
"author": "Hugo Alliaume <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kocal/jsdoc-vuejs/issues"
},
"homepage": "https://github.com/Kocal/jsdoc-vuejs#readme",
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"dependencies": {
"ejs": "^3.0.1"
},
"peerDependencies": {
"jsdoc": ">=3.0.0",
"@vue/compiler-sfc": ">= 3.0.0"
},
"devDependencies": {
"@kocal/semantic-release-preset": "^2.0.6",
"@vue/compiler-sfc": "^3.1.4",
"cypress": "^4.0.1",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.13.0",
"jest": "^24.0.0",
"jsdoc": "^3.6.2",
"semantic-release": "^17.1.1"
}
}