forked from kfiroo/sendbird-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "sendbird-nodejs",
"version": "1.0.1",
"description": "Thin wrapper around SendBird Server REST API v3",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src -d dist",
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blissapps/sendbird-nodejs.git"
},
"keywords": [
"sendbird",
"sendbird sdk",
"sdk",
"node",
"nodejs"
],
"author": "tjanela <tjanela@blissapplications.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blissapps/sendbird-nodejs/issues"
},
"homepage": "https://github.com/blissapps/sendbird-nodejs#readme",
"dependencies": {
"bluebird": "3.4.6",
"lodash": "4.17.2",
"request": "2.79.0",
"request-promise": "4.1.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2015-node": "6.1.1",
"babel-preset-stage-2": "6.18.0",
"expect": "1.20.2",
"mocha": "3.2.0",
"nock": "9.0.2",
"nodemon": "1.11.0"
}
}