UNPKG

1.23 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.2",
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 "engines": {
30 "node": ">= 4.2.0"
31 },
32 "dependencies": {
33 "addressparser": "^1.0.1",
34 "array-indexofobject": "~0.0.1",
35 "lodash.assign": "^4.2.0",
36 "lodash.get": "^4.4.2",
37 "lodash.has": "^4.5.2",
38 "lodash.uniq": "^4.5.0",
39 "readable-stream": "^2.2.2",
40 "sax": "^1.2.4"
41 },
42 "devDependencies": {
43 "eslint": "^4.8.0",
44 "iconv": "^2.3.0",
45 "mocha": "^4.0.1",
46 "request": "^2.83.0"
47 },
48 "scripts": {
49 "lint": "eslint .",
50 "pretest": "npm run lint",
51 "test": "mocha",
52 "version": "git changelog ; git add History.md"
53 }
54}