-
Notifications
You must be signed in to change notification settings - Fork 192
/
package.json
70 lines (70 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "feedparser",
"author": "Dan MacTough <[email protected]>",
"description": "Robust RSS Atom and RDF feed parsing using sax js",
"bin": {
"feedparser": "./bin/feedparser.js"
},
"version": "2.2.10",
"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",
"files": [
"index.js",
"bin/*.js",
"lib"
],
"engines": {
"node": ">= 10.18.1"
},
"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",
"mri": "^1.1.5",
"readable-stream": "^2.3.7",
"sax": "^1.2.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"iconv-lite": "^0.5.1",
"mocha": "^7.1.2",
"node-fetch": "^2.6.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha",
"version": "git changelog ; git add History.md"
},
"mocha": {
"require": "./test/common.js",
"globals": [
"assert",
"fs",
"FeedParser"
],
"reporter": "spec",
"timeout": 5000
}
}