forked from damirn/bot-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "wire-bot-sdk-node",
"version": "0.0.1",
"description": "Node.js module for creating Wire bots",
"main": "lib/service.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wireapp/bot-sdk-node.git"
},
"keywords": [
"Wire",
"bot"
],
"author": "Damir Nedžibović <damirn@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/wireapp/bot-sdk-node/issues"
},
"homepage": "https://github.com/wireapp/bot-sdk-node#readme",
"engines": {
"node": "6.9.0"
},
"dependencies": {
"base64-arraybuffer": "^0.1.5",
"cryptobox": "git+https://github.com/damirn/cryptobox.js.git",
"follow-redirects": "^1.2.1",
"firebase-hackernews": "^0.1.0",
"protocol-buffers": "^3.2.1",
"uuid": "^3.0.1",
"wire-webapp-proteus": "~3.0.3"
},
"devDependencies": {
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0"
}
}