-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.13 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
{
"name": "vuepressify",
"version": "0.2.0",
"description": "Add Vuepress documentation to your existing project with one command",
"author": {
"name": "Muhammad Rivki",
"email": "[email protected]",
"url": "http://this.rivki.id"
},
"homepage": "https://github.com/mikqi/vuepressify",
"bugs": "https://github.com/mikqi/vuepressify/issues",
"repository": {
"type": "git",
"url": "https://github.com/mikqi/vuepressify.git"
},
"bin": {
"vuepressify": "app/cli.js"
},
"scripts": {
"publish": "np",
"test": "xo && ava --serial"
},
"main": "app/index.js",
"files": [
"app"
],
"keywords": [
"cli-app",
"cli",
"vuepress",
"vue",
"generator"
],
"dependencies": {
"chalk": "^2.4.1",
"ejs": "^2.6.1",
"fs-extra": "^6.0.1",
"inquirer": "^6.0.0",
"meow": "^5.0.0",
"np": "^5.1.1"
},
"license": "MIT",
"engines": {
"node": ">= 8"
},
"devDependencies": {
"ava": "^0.25.0",
"execa": "^0.10.0",
"inquirer-test": "^2.0.1",
"xo": "^0.21.1"
},
"xo": {
"space": true,
"semicolon": false,
"no-new": false
}
}