-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
49 lines (49 loc) · 1.2 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
{
"name": "@11ty/eleventy-plugin-rss",
"version": "2.0.2",
"description": "Generate an Atom, RSS, or JSON feed with Eleventy.",
"publishConfig": {
"access": "public"
},
"main": ".eleventy.js",
"scripts": {
"test": "npx ava",
"sample": "cd sample && npx @11ty/eleventy --config=config-sample.js --pathprefix=pathprefix",
"clean": "rm -rf sample/_site"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/eleventy-plugin-rss.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"keywords": [
"eleventy",
"eleventy-plugin"
],
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-plugin-rss/issues"
},
"homepage": "https://www.11ty.dev/docs/plugins/rss/",
"11ty": {
"compatibility": ">=3.0.0-alpha.15"
},
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.16",
"ava": "^4.3.0"
},
"dependencies": {
"@11ty/eleventy-utils": "^1.0.3",
"@11ty/posthtml-urls": "1.0.0",
"debug": "^4.3.5",
"posthtml": "^0.16.6"
}
}