-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 854 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": "twitter-bot",
"version": "1.0.0",
"description": "a small project of a twitter bot",
"scripts": {
"start": "node src/index.js",
"lint": "eslint -- ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/pamepeixinho/twitter-bot.git"
},
"keywords": [
"twitter",
"bot"
],
"author": "@pamepeixinho",
"license": "ISC",
"bugs": {
"url": "https://github.com/pamepeixinho/twitter-bot/issues"
},
"homepage": "https://github.com/pamepeixinho/twitter-bot#readme",
"dependencies": {
"dotenv": "^5.0.1",
"twitter": "^1.7.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"node": true,
"es6": true
}
}
}