forked from jbierfeldt/podcast-feed-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 916 Bytes
/
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
{
"name": "podcast-feed-parser",
"version": "1.0.9",
"description": "A highly customizable package for fetching and parsing podcast feeds into simple and manageable JavaScript objects. For use with node and in the browser.",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/jbierfeldt/podcast-feed-parser.git"
},
"keywords": [
"javascript",
"podcast",
"podcast-client",
"podcast-fetcher",
"podcast-aggregator",
"rss",
"parse",
"parser",
"feed"
],
"author": "Jackson Bierfeldt <[email protected]> (http://bierfeldtaudio.com)",
"license": "ISC",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"npm": "^6.4.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"expect": "^26.6.2",
"mocha": "^8.2.1"
}
}