forked from jbierfeldt/podcast-feed-parser
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1002 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
38
39
40
41
{
"name": "@podverse/podcast-feed-parser",
"version": "1.1.1",
"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/podverse/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)",
"contributors": [
"Mitch Downey"
],
"license": "ISC",
"dependencies": {
"abort-controller": "^3.0.0",
"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": "^23.6.0",
"mocha": "^5.2.0"
}
}