-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "rss-url-parser",
"version": "3.0.0",
"description": "A simple node module to parse an RSS feed from a URL",
"main": "index.js",
"scripts": {
"test:lint": "eslint .",
"test:unit": "jest",
"test": "npm run test:unit && npm run test:lint && npm audit",
"preversion": "npm test",
"postversion": "git push --follow-tags && npm publish"
},
"engines": {
"node": "^16 || ^18 || ^20",
"npm": "9.x.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexChesters/rss-url-parser.git"
},
"keywords": [
"rss",
"feed",
"parser",
"url",
"json"
],
"author": "Alex Chesters",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexChesters/rss-url-parser/issues"
},
"dependencies": {
"feedparser": "^2.2.10",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.0.4",
"nock": "^13.1.0"
}
}