-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 743 Bytes
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
{
"name": "bot-zero",
"version": "0.0.1",
"private": true,
"author": "Wehkamp (kbakker@wehkamp.nl)",
"description": "An 'empty' bot that can be the start for your own bot.",
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^5.0.1",
"hubot": "^2.19.0",
"hubot-command-mapper": "^1.2.9",
"hubot-help": "^0.2.2",
"hubot-slack": "^4.4.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"hubot-pretend": "^1.2.0"
},
"engines": {
"node": "0.10.x"
},
"scripts": {
"start": "hubot --adapter slack",
"test": "npm run mocha ./tests/**/*.spec.js",
"mocha": "mocha --recursive --timeout 10000 --exit"
}
}