-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "gatsby-plugin-podcast-feed-mdx",
"version": "0.1.0-beta.0",
"description": "Gatsby plugin to generate a podcast rss feed using mdx for episodes.",
"author": "Dan Miller",
"private": false,
"license": "MIT",
"homepage": "https://github.com/miller-productions/gatsby-plugin-podcast-feed-mdx#readme",
"bugs": "https://github.com/miller-productions/gatsby-plugin-podcast-feed-mdx/issues",
"repository": {
"type": "git",
"url": "https://github.com/miller-productions/gatsby-plugin-podcast-feed-mdx.git"
},
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"podcast",
"feed",
"rss",
"mdx"
],
"dependencies": {
"entities": "^2.1.0",
"fs-extra": "^9.0.1",
"rss": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-preset-gatsby-package": "^0.5.3",
"cross-env": "^7.0.2"
},
"engines": {
"node": ">=8.0.0"
}
}