-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 861 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
{
"name": "himachalibot",
"description": "A twitter bot that keeps a watch on hashtags and retweets them",
"version": "3.0.0",
"repository": {
"type": "git",
"url": "https://github.com/rajeshdh/himachali-tweet-bot.git"
},
"keywords": [
"twitter",
"tweet-bot",
"node.js"
],
"author": "rajesh dhiman @paharihacker",
"license": "ISC",
"bugs": {
"url": "https://github.com/rajeshdh/himachali-tweet-bot/issues"
},
"main": "server.js",
"scripts": {
"dev": "nodemon --exec babel-node server.js",
"start": "babel-node server.js"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"nodemon": "^1.19.1"
},
"dependencies": {
"dotenv": "^8.0.0",
"twitter": "^1.7.1"
}
}