-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 939 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 939 Bytes
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
{
"name": "eleventy-plugin-feedbin",
"version": "0.0.2",
"description": "A little 11ty plugin to help you make use of the Feedbin API.",
"main": ".eleventy.js",
"author": "Timothy Miller <tim@webinspect.tech>",
"license": "MIT",
"scripts": {
"demo": "NODE_ENV=production npx @11ty/eleventy --input=sample --output=sample/_site --config=sample/.eleventy.js",
"debug": "DEBUG=Eleventy* eleventy NODE_ENV=production npx @11ty/eleventy --input=sample --output=sample/_site --config=sample/.eleventy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebInspectInc/eleventy-plugin-feedbin.git"
},
"homepage": "https://github.com/WebInspectInc/eleventy-plugin-feedbin#readme",
"keywords": [
"eleventy",
"plugin",
"api",
"feedbin",
"11ty",
"rss"
],
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.0"
}
}