-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.06 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
{
"name": "iss-twitter-bot",
"version": "3.0.0",
"description": "A bot that scrapes ISS location data from NASA's website and tweets when and where the ISS is visible from Corner Brook, Grand Falls, and St. Johns Newfoundland.",
"main": "ISSBot.js",
"scripts": {
"start": "npm run start-bot",
"start-bot": "node ISSBot.js start-bot",
"run-job": "node ISSBot.js run-job",
"write-locations": "node ISSBot.js write-locations",
"read-locations": "node ISSBot.js read-locations",
"print-locations": "node ISSBot.js print-locations"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keenan-Nicholson/ISS_Twitter_Bot.git"
},
"author": "Keenan Nicholson",
"bugs": {
"url": "https://github.com/Keenan-Nicholson/ISS_Twitter_Bot/issues"
},
"homepage": "https://github.com/Keenan-Nicholson/ISS_Twitter_Bot#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"minimist": "^1.2.6",
"node-cron": "^3.0.2",
"node-fetch": "^3.2.10",
"twit": "^2.2.11"
}
}