forked from codeforequity-at/botium-connector-fbpagereceiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
47
48
49
50
51
52
53
54
{
"name": "botium-connector-fbpagereceiver",
"version": "0.0.1",
"description": "Botium Connector for Facebook Messenger Bots",
"main": "dist/botium-connector-fbpagereceiver-cjs.js",
"module": "dist/botium-connector-fbpagereceiver-es.js",
"bin": {
"botium-fbproxy-cli": "./bin/botium-fbproxy-cli.js"
},
"scripts": {
"build": "npm run eslint && rollup -c",
"eslint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforequity-at/botium-connector-fbpagereceiver.git"
},
"author": "Botium GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforequity-at/botium-core/issues"
},
"homepage": "https://github.com/codeforequity-at/botium-core",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"debug": "^4.1.1",
"express": "^4.16.4",
"facebook-chat-api": "^1.6.0",
"ioredis": "^4.3.0",
"lodash": "^4.17.11",
"readline": "^1.3.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"yargs": "^12.0.5"
}
}