-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
38 lines (38 loc) · 943 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
{
"name": "slackbots",
"version": "1.3.0",
"description": "Simple API for Slack",
"main": "index.js",
"author": {
"name": "Mikhail Mokrushin",
"email": "[email protected]"
},
"homepage": "https://github.com/mishk0/slack-bot-api",
"bugs": {
"url": "https://github.com/mishk0/slack-bot-api/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mishk0/slack-bot-api.git"
},
"license": "MIT",
"scripts": {
"test": "./node_modules/jshint/bin/jshint index.js && ./node_modules/jscs/bin/jscs index.js && ./node_modules/mocha/bin/mocha"
},
"dependencies": {
"extend": "^3.0.2",
"lodash": "^4.17.15",
"request": "^2.88.0",
"vow": "^0.4.20",
"ws": "^7.1.1",
"ws-heartbeat": "^1.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jscs": "^3.0.7",
"jshint": "^2.10.2",
"mocha": "^6.2.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0"
}
}