-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "mob-slackbot",
"version": "4.0.0",
"description": "Bot integrado com Slack para automatizar tarefas comuns de gerenciamento.",
"main": "index.js",
"scripts": {
"start": "node bin/repl.js",
"serve": "node bin/service.js",
"test": "npm run test:lint && npm run test:istanbul",
"test:lint": "standard",
"test:mocha": "mocha test/*",
"test:istanbul": "istanbul cover _mocha --report lcovonly -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobyourlife/v4-slackbot.git"
},
"keywords": [
"slack",
"bot",
"management",
"tasks",
"invisible",
"ui",
"chat"
],
"author": "Filipe Oliveira <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mobyourlife/v4-slackbot/issues"
},
"homepage": "https://github.com/mobyourlife/v4-slackbot#readme",
"devDependencies": {
"expect.js": "^0.3.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"standard": "^6.0.8"
},
"dependencies": {
"@slack/client": "^2.1.0",
"levenshtein": "^1.0.5"
}
}