-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "vuepress-plugin-feed",
"version": "0.1.9",
"description": "RSS, Atom, and JSON feeds generator plugin for VuePress 1.x",
"main": "index.js",
"scripts": {
"version": "git add --all",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webmasterish/vuepress-plugin-feed.git"
},
"keywords": [
"vue",
"vuepress",
"plugin",
"vuepress-plugin",
"blog",
"feed",
"xml",
"rss",
"atom",
"json",
"json-feed",
"syndication"
],
"author": {
"name": "webmasterish",
"email": "[email protected]",
"url": "https://webmasterish.com"
},
"license": "MIT",
"homepage": "https://github.com/webmasterish/vuepress-plugin-feed",
"bugs": {
"url": "https://github.com/webmasterish/vuepress-plugin-feed/issues"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"feed": "2.0.4",
"lodash.defaultsdeep": "4.6.1",
"lodash.isempty": "4.4.0",
"lodash.trimend": "^4.5.1",
"lodash.trimstart": "^4.5.1",
"remove-markdown": "0.3.0",
"striptags": "3.1.1"
},
"peerDependencies": {
"vuepress": "1.x"
},
"files": [
"lib",
"index.js",
"README.md",
"LICENSE"
]
}