-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
41
42
43
44
45
{
"name": "slacktogglreminders",
"version": "1.0.0",
"description": "Slack bot that handles various reminders and reporting for Toggl",
"main": "index.js",
"dependencies": {
"botkit": "^0.4.0",
"slack": "^7.7.3",
"toggl-api": "^1.0.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.1.1",
"gulp-jshint": "^2.0.1",
"gulp-load-plugins": "^1.1.0",
"jshint": "^2.9.2",
"chai": "^3.5.0",
"gulp-mocha": "^3.0.1"
},
"scripts": {
"start": "node ./app/Bot.js",
"test": "gulp pretest test coveralls lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrking/SlackTogglReminders.git"
},
"keywords": [
"slack",
"toggl",
"bot",
"reminders",
"time",
"tracking",
"timetracking",
"time-tracking"
],
"author": "Michael King and Tyrone Tan",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrking/SlackTogglReminders/issues"
},
"homepage": "https://github.com/mrking/SlackTogglReminders#readme"
}