forked from jbierfeldt/podcast-feed-parser
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
50
51
52
53
{
"name": "podparse",
"version": "1.6.0",
"description": "A simple package for parsing podcast RSS feeds into manageable JavaScript objects. For use with Node and in the browser.",
"main": "index.js",
"files": [
"index.js",
"index.d.ts",
"LICENSE.md"
],
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Tombarr/podcast-feed-parser.git"
},
"keywords": [
"javascript",
"node",
"nodejs",
"podcast",
"rss",
"itunes",
"xml",
"googleplay",
"atom",
"parse",
"parser",
"podcast-client",
"podcast-aggregator",
"feed"
],
"contributors": [
"Jackson Bierfeldt <[email protected]> (https://bierfeldtaudio.com)"
],
"author": "Thomas Barrasso <[email protected]> (https://barrasso.me)",
"license": "ISC",
"dependencies": {
"@rgrove/parse-xml": "^4.1.0"
},
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.52.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"expect": "^29.7.0",
"mocha": "^10.2.0"
}
}