forked from dempfi/slack-timezone-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 823 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
{
"name": "slack-tz-bot",
"version": "0.0.1",
"description": "Bot to automatically show times in timezones of all users.",
"main": "dest/index.js",
"scripts": {
"start": "node_modules/.bin/tsc; node dest/index.js",
"build": "tsc",
"dev": "./scripts/dev.sh"
},
"engines": {
"node": ">=8.5.0",
"yarn": ">=1.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dempfi/slack-tz-bot.git"
},
"author": "Ike Ku <dempfi@toptal.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dempfi/slack-tz-bot/issues"
},
"homepage": "https://github.com/dempfi/slack-tz-bot#readme",
"dependencies": {
"@xene/slack": "^0.5.1",
"moment": "^2.19.1"
},
"devDependencies": {
"@types/node": "^8.0.47",
"typescript": "^2.5.2"
}
}