forked from danmactough/node-feedparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 KB
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
54
{
"name": "feedparser",
"author": "Dan MacTough <danmactough@gmail.com>",
"description": "Robust RSS Atom and RDF feed parsing using sax js",
"bin": {
"feedparser": "./bin/feedparser.js"
},
"version": "2.2.0",
"keywords": [
"rss",
"feed",
"atom",
"rdf",
"xml",
"syndication",
"rsscloud",
"pubsubhubbub"
],
"license": "MIT",
"homepage": "http://github.com/danmactough/node-feedparser",
"repository": {
"type": "git",
"url": "git://github.com/danmactough/node-feedparser.git"
},
"bugs": {
"url": "http://github.com/danmactough/node-feedparser/issues"
},
"main": "index.js",
"engines": {
"node": ">= 4.2.0"
},
"dependencies": {
"addressparser": "^1.0.1",
"array-indexofobject": "~0.0.1",
"lodash.assign": "^4.2.0",
"lodash.get": "^4.4.2",
"lodash.has": "^4.5.2",
"lodash.uniq": "^4.5.0",
"readable-stream": "^2.2.2",
"sax": "^1.2.1"
},
"devDependencies": {
"eslint": "^3.17.1",
"iconv": "2.2.2",
"mocha": "^3.4.1",
"request": "~2.81.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha",
"version": "git changelog ; git add History.md"
}
}