forked from rbren/rss-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1005 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
42
43
44
45
{
"name": "rss-parser",
"version": "3.1.2",
"main": "index.js",
"scripts": {
"test": "mocha",
"build": "./scripts/build.sh"
},
"author": "Bobby Brennan",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"chai": "^3.4.1",
"express": "^4.15.4",
"mocha": "^3.5.3",
"puppeteer": "^0.9.0",
"webpack": "^3.5.5"
},
"dependencies": {
"entities": "^1.1.1",
"xml2js": "^0.4.17"
},
"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 lightweight RSS parser, for Node and the browser",
"keywords": [
"RSS",
"RSS to JSON",
"RSS reader",
"RSS parser",
"RSS to JS",
"Feed reader"
]
}