-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.36 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
{
"name": "vuepress-new-page",
"version": "0.1.1",
"description": "A simple way to create a new VuePress page or post",
"scripts": {
"test": "nyc --reporter=html --reporter=text ava --verbose",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"preversion": "npm test",
"version": "git add --all",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webmasterish/vuepress-new-page.git"
},
"keywords": [
"vue",
"vuejs",
"vuepress",
"new",
"page",
"post",
"template",
"generator",
"cli",
"cli-app"
],
"author": {
"name": "webmasterish",
"email": "[email protected]",
"url": "https://webmasterish.com"
},
"license": "MIT",
"homepage": "https://github.com/webmasterish/vuepress-new-page",
"bugs": {
"url": "https://github.com/webmasterish/vuepress-new-page/issues"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"commander": "2.19.0",
"dateformat": "3.0.3",
"fs-extra": "7.0.1",
"rc": "1.2.8",
"slugify": "1.3.4"
},
"bin": {
"vuepress-new-page": "./cli.js",
"vp-new": "./cli.js"
},
"files": [
"cli.js",
"README.md",
"LICENSE"
],
"devDependencies": {
"ava": "1.3.0",
"coveralls": "3.0.3",
"execa": "1.0.0",
"nyc": "13.3.0"
}
}