-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "ssb-bot-feed",
"version": "3.0.0",
"description": "Scuttlebutt bot that read RSS feeds and post updates automatically",
"main": "index.js",
"type": "module",
"scripts": {
"test": "ava",
"start": "./index.js",
"dev:server": "npx ssb-server start --port 9999 --path .ssb",
"dev:client": "./index.js --path .ssb --port 9999 http://feeds.bbci.co.uk/news/rss.xml http://rss.slashdot.org/Slashdot/slashdot",
"dev": "concurrently --kill-others --restart-tries 3 --restart-after 3000 \"npm run dev:server\" \"npm run dev:client\""
},
"bin": {
"ssb-bot-feed": "index.js"
},
"keywords": [
"ssb",
"scuttlebutt",
"bot",
"feed",
"rss"
],
"author": "Walker at praiseweb.com.br",
"license": "MIT",
"devDependencies": {
"ava": "^4.0.0-alpha.2",
"concurrently": "^5.0.0",
"nock": "^13.5.0",
"ssb-config": "^3.4.2",
"ssb-server": "^15.1.2"
},
"dependencies": {
"pull-stream": "^3.6.14",
"request": "^2.88.0",
"rss-feed-emitter": "^3.2.3",
"ssb-client": "^4.7.8",
"ssb-keys": "^8.5.0",
"stream-to-pull-stream": "^1.7.3",
"striptags": "^3.1.1",
"turndown": "^7.1.2",
"yargs": "^14.2.0"
}
}