forked from rbren/rss-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 910 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
{
"name": "rss-parser",
"version": "2.7.0",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "Bobby Brennan",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.1",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-contrib-uglify": "^2.2.0"
},
"dependencies": {
"entities": "^1.1.1",
"xml2js": "^0.4.15"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bobby-brennan/rss-parser.git"
},
"bugs": {
"url": "https://github.com/bobby-brennan/rss-parser/issues"
},
"homepage": "https://github.com/bobby-brennan/rss-parser#readme",
"description": "A simple, light-weight RSS parser. Parse strings, URLs, or files and get a JS object back",
"keywords": [
"RSS",
"RSS to JSON",
"RSS reader",
"RSS parser",
"RSS to JS",
"Feed reader"
]
}