-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "gitbook-plugin-rss",
"version": "3.0.2",
"description": "RSS for your gitbook",
"main": "index.js",
"engines": {
"node": ">=4",
"gitbook": ">=3.2.0"
},
"gitbook": {
"properties": {
"title": {
"type": "string",
"required": true,
"description": "Title of your site or feed."
},
"description": {
"type": "string",
"description": "A short description of the feed."
},
"generator": {
"type": "string",
"description": "Feed generator."
},
"site_url": {
"type": "string",
"required": true,
"description": "Url to the site that the feed is for."
},
"feed_url": {
"type": "string",
"required": true,
"description": "Url to the rss feed."
},
"image_url": {
"type": "string",
"description": "Small image for feed readers to use."
},
"managingEditor": {
"type": "string",
"description": "Who manages content in this feed."
},
"webMaster": {
"type": "string",
"description": "Who manages feed availability and technical support."
},
"categories": {
"type": "array",
"description": "One or more categories this feed belongs to."
},
"copyright": {
"type": "string",
"description": "Copyright information for this feed."
},
"language": {
"type": "string",
"description": "The language of the content of this feed."
}
}
},
"scripts": {
"postpublish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denysdovhan/gitbook-plugin-rss.git"
},
"keywords": [
"gitbook",
"rss",
"plugin"
],
"author": "Denys Dovhan <[email protected]> (http://denysdovhan.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/denysdovhan/gitbook-plugin-rss/issues"
},
"homepage": "https://github.com/denysdovhan/gitbook-plugin-rss#readme",
"dependencies": {
"get-md-desc": "^1.0.2",
"get-md-title": "^1.0.4",
"gitbook-plugin-rss": "^3.0.2",
"rss": "^1.2.2"
}
}