-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 741 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 741 Bytes
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
{
"name": "twitter-retweet",
"version": "1.0.0",
"description": "retweet and like the contents of a twitter list based on keywords to reject and accept certain tweets.",
"keywords": "twitter,twitter bot,retweet,auto retweet,twitter list",
"homepage": "https://github.com/MSFTserver/twitter-retweet#readme",
"bugs": {
"url": "https://github.com/MSFTserver/twitter-retweet/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MSFTserver/twitter-retweet.git"
},
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"test": "set DEBUG=* & node test/test.js"
},
"author": "HostsServer",
"dependencies": {
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"twit": "^2.2.11"
}
}