forked from hurrymaplelad/docpad-plugin-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 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": "docpad-plugin-rss",
"version": "2.2.0",
"description": "DocPad plugin that generates an RSS feed for a collection of documents",
"homepage": "https://github.com/hurrymaplelad/docpad-plugin-rss",
"license": {
"type": "MIT"
},
"keywords": [
"docpad",
"docpad-plugin",
"ATOM",
"RSS",
"feed"
],
"badges": {
"travis": true,
"npm": true,
"npmdownloads": true,
"david": true,
"daviddev": true
},
"author": "Adam Hull <[email protected]> (https://github.com/hurrymaplelad)",
"maintainers": [
"Adam Hull <[email protected]> (https://github.com/hurrymaplelad)"
],
"contributors": [
"Eric Vantillard <[email protected]> (http://github.com/evantill)",
"varya (https://github.com/varya)"
],
"bugs": {
"url": "https://github.com/hurrymaplelad/docpad-plugin-rss/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hurrymaplelad/docpad-plugin-rss.git"
},
"engines": {
"node": ">=0.8"
},
"peerDependencies": {
"docpad": "6"
},
"dependencies": {
"rss": "^1.1.1"
},
"devDependencies": {
"docpad": "6",
"coffee-script": "^1.9.0",
"projectz": "^0.4.2"
},
"main": "./out/rss.plugin.js",
"scripts": {
"test": "node ./out/rss.test.js"
},
"cakeConfiguration": {
"COFFEE_SRC_PATH": "src"
}
}