forked from wehkamp/bot-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
46
47
48
49
50
{
"name": "bot-zero",
"version": "0.0.1",
"private": true,
"author": "Wehkamp ([email protected])",
"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.10",
"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",
"hubot-pretend": "^1.2.0",
"husky": "^1.0.0-rc.6",
"mocha": "^5.1.1",
"standard": "^11.0.1"
},
"engines": {
"node": "0.10.x"
},
"scripts": {
"start": "hubot --adapter slack",
"test": "standard --fix && npm run mocha ./tests/**/*.spec.js",
"mocha": "mocha --recursive --timeout 10000 --exit"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
}
}