forked from mishk0/slack-bot-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 912 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
{
"name": "slackbots",
"version": "1.1.0",
"description": "Simple API for Slack",
"main": "index.js",
"author": {
"name": "Mikhail Mokrushin",
"email": "mokrushin.ms@ya.ru"
},
"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": "^2.0.1",
"lodash": "^4.17.2",
"request": "^2.56.0",
"vow": "^0.4.9",
"ws": "^1.0.1"
},
"devDependencies": {
"chai": "^2.3.0",
"jscs": "^1.13.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"sinon": "^1.14.1",
"sinon-chai": "^2.8.0"
}
}