-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.88 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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.3.1",
"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",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"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 <1.4.4"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/readable-stream": "^2.3.15",
"@types/sax": "^1.2.7",
"eslint": "^6.8.0",
"iconv-lite": "^0.5.1",
"mocha": "^7.1.2",
"node-fetch": "^2.6.0",
"typescript": "^5.9.3"
},
"scripts": {
"lint": "eslint .",
"typecheck": "node -e \"process.exit(process.release.lts < 'Gallium' ? 0 : 1)\" || tsc",
"typecheck:src": "node -e \"process.exit(process.release.lts < 'Gallium' ? 0 : 1)\" || tsc --project tsconfig.src.json",
"pretest": "npm run lint && npm run typecheck && npm run typecheck:src",
"test": "mocha",
"version": "git changelog ; git add History.md"
},
"mocha": {
"require": "./test/common.js",
"globals": [
"assert",
"fs",
"FeedParser"
],
"reporter": "spec",
"timeout": 5000
}
}