UNPKG

1.49 kBJSONView Raw
1{
2 "name": "feedparser",
3 "author": "Dan MacTough <danmactough@gmail.com>",
4 "description": "Robust RSS Atom and RDF feed parsing using sax js",
5 "bin": {
6 "feedparser": "./bin/feedparser.js"
7 },
8 "version": "2.2.10",
9 "keywords": [
10 "rss",
11 "feed",
12 "atom",
13 "rdf",
14 "xml",
15 "syndication",
16 "rsscloud",
17 "pubsubhubbub"
18 ],
19 "license": "MIT",
20 "homepage": "http://github.com/danmactough/node-feedparser",
21 "repository": {
22 "type": "git",
23 "url": "git://github.com/danmactough/node-feedparser.git"
24 },
25 "bugs": {
26 "url": "http://github.com/danmactough/node-feedparser/issues"
27 },
28 "main": "index.js",
29 "files": [
30 "index.js",
31 "bin/*.js",
32 "lib"
33 ],
34 "engines": {
35 "node": ">= 10.18.1"
36 },
37 "dependencies": {
38 "addressparser": "^1.0.1",
39 "array-indexofobject": "~0.0.1",
40 "lodash.assign": "^4.2.0",
41 "lodash.get": "^4.4.2",
42 "lodash.has": "^4.5.2",
43 "lodash.uniq": "^4.5.0",
44 "mri": "^1.1.5",
45 "readable-stream": "^2.3.7",
46 "sax": "^1.2.4"
47 },
48 "devDependencies": {
49 "eslint": "^6.8.0",
50 "iconv-lite": "^0.5.1",
51 "mocha": "^7.1.2",
52 "node-fetch": "^2.6.0"
53 },
54 "scripts": {
55 "lint": "eslint .",
56 "pretest": "npm run lint",
57 "test": "mocha",
58 "version": "git changelog ; git add History.md"
59 },
60 "mocha": {
61 "require": "./test/common.js",
62 "globals": [
63 "assert",
64 "fs",
65 "FeedParser"
66 ],
67 "reporter": "spec",
68 "timeout": 5000
69 }
70}