forked from patricksimpson/garbage-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
33
34
35
36
37
38
39
40
{
"name": "garbage-bot",
"version": "1.0.0",
"description": "A slackbot to ocassionally look for old channels to be archived.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"garbage": "node dist/garbageBot.js",
"say": "node dist/sayBoy.js",
"pregarbage": "babel src --out-dir dist",
"postinstall": "mkdir -p dist && babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patricksimpson/garbage-bot.git"
},
"babel": {
"presets": [
"es2015"
]
},
"author": "Patrick Simpson",
"license": "ISC",
"bugs": {
"url": "https://github.com/patricksimpson/garbage-bot/issues"
},
"homepage": "https://github.com/patricksimpson/garbage-bot#readme",
"dependencies": {
"@slack/client": "^3.6.1",
"dotenv": "^2.0.0",
"moment": "^2.24.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"node-env-file": "^0.1.8",
"node-file-exists": "^1.1.0",
"prompt": "^1.0.0"
}
}