-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "@pharastar/rss-feed-watcher",
"version": "0.0.1",
"description": "A Simple Watcher for RSS Feeds emitting \"data\"event on new entries. ",
"main": "feedwatcher.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"prettier": "npx prettier --write .",
"lint": "./node_modules/.bin/eslint .",
"licenseCheck": "license-check-and-add check -f ./licenseConfig.json",
"license": "license-check-and-add add -f ./licenseConfig.json"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/PharaStarLLC/rss-feed-watcher.git"
},
"keywords": [
"rss",
"feed",
"rss-feed",
"rss-watch",
"watch",
"rss-updates",
"rss-data"
],
"author": "pharastar.dev",
"license": "MIT",
"bugs": {
"url": "https://github.com/PharaStarLLC/rss-feed-watcher/issues"
},
"homepage": "https://github.com/PharaStarLLC/rss-feed-watcher#readme",
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"license-check-and-add": "^4.0.5",
"prettier": "^2.7.1"
},
"dependencies": {
"feedparser": "^2.2.10",
"node-fetch": "^3.2.10"
}
}