forked from fengkx/NodeRSSBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.32 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
{
"name": "noderssbot",
"version": "0.0.1",
"description": "Another Telegram RSSBot in Node.js",
"main": "index.js",
"scripts": {
"start": "node index",
"dev": "proxychains -q node $NODE_DEBUG_OPTION index",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.{js,json,md}\" --write",
"lint": "eslint \"**/*.js\" && prettier-check \"**/*.{js,json,md}\""
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fengkx/NodeRSSBot.git"
},
"keywords": [
"Telegram"
],
"author": "fengkx",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengkx/NodeRSSBot/issues"
},
"homepage": "https://github.com/fengkx/NodeRSSBot#readme",
"dependencies": {
"camelcase": "^5.2.0",
"ejs": "^2.6.1",
"got": "^9.6.0",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.1",
"js-yaml": "^3.12.2",
"lodash.pick": "^4.4.0",
"node-schedule": "^1.3.2",
"rss-parser": "^3.7.0",
"socks-proxy-agent": "^4.0.2",
"sqlite": "^3.0.2",
"sqlite3": "^4.0.6",
"telegraf": "^3.27.1",
"winston": "^3.2.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"prettier-check": "^2.0.0"
}
}