-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 839 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 839 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
31
32
33
34
35
{
"name": "nodejs-slack-bot",
"version": "1.0.0",
"description": "a slack bot built with node",
"main": "server/service.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanv3232/nodejs-slack-bot.git"
},
"keywords": [
"node",
"express",
"natural language processing",
"microservice"
],
"author": "Jonathan Vargas",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonathanv3232/nodejs-slack-bot/issues"
},
"homepage": "https://github.com/jonathanv3232/nodejs-slack-bot#readme",
"dependencies": {
"@slack/client": "^3.15.0",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"superagent": "^3.8.2"
},
"bin": {
"bot-time": "run.js"
},
"devDependencies": {}
}