-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 910 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
40
41
{
"name": "slack-lunchbot",
"version": "1.0.0",
"description": "Lunchbot for slack",
"main": "lib/lunchbot.js",
"scripts": {
"start": "node lib/lunchbot.js",
"test": "mocha tests/*.js tests/crawlers/*.js --timeout 5000"
},
"engines": {
"node": "7.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaytcat/slack-lunchbot.git"
},
"keywords": [
"lunchbot",
"slack",
"lunch",
"bot"
],
"author": "kununu",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaytcat/slack-lunchbot/issues"
},
"homepage": "https://github.com/kaytcat/slack-lunchbot#readme",
"dependencies": {
"crawler": "^1.0.4",
"date-fns": "^1.28.2",
"download-file": "^0.1.5",
"pdf2json": "^1.1.7",
"slackbots": "1.0.2",
"html-to-text": "3.3.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.2.1"
}
}