-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
39 lines (39 loc) · 974 Bytes
/
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
{
"name": "quotter",
"version": "1.0.0",
"description": "A twitter bot which tweets random motivational quotes with image",
"main": "src/tweet.js",
"scripts": {
"build": "mocha tests/pre.js && mocha tests/test.js && node src/tweet.js",
"pretest": "mocha tests/pre.js",
"test": "mocha tests/test.js",
"start": "node src/tweet.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinitshahdeo/Quotter.git"
},
"keywords": [
"twitter",
"bot",
"motivation",
"tweet",
"hashtags",
"inspirational",
"quotes"
],
"author": "Vinit Shahdeo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vinitshahdeo/TwitterBot/issues"
},
"homepage": "https://vinitshahdeo.github.io/Quotter/",
"dependencies": {
"inspirational-quotes": "^1.0.5",
"node-base64-image": "^1.0.4",
"twitter": "1.7.1"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}