forked from codeforequity-at/botium-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "botium-core",
"version": "1.3.0",
"description": "The Selenium for Chatbots",
"main": "dist/botium-cjs.js",
"module": "dist/botium-es.js",
"scripts": {
"build": "npm run eslint && rollup -c",
"eslint": "eslint \"./src/**/*.js\" \"./test/**/*.js\"",
"newpatch": "npm version patch",
"agent": "node ./src/grid/agent/agent.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforequity-at/botium-core.git"
},
"author": "Florian Treml",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforequity-at/botium-core/issues"
},
"homepage": "https://github.com/codeforequity-at/botium-core#readme",
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"copy-dir": "^0.3.0",
"debug": "^3.1.0",
"dialogflow": "^0.1.0",
"express": "^4.16.2",
"facebook-chat-api": "^1.4.0",
"find-root": "^1.1.0",
"glob": "^7.1.2",
"is-json": "^2.0.1",
"jsonpath": "^1.0.0",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"moment": "^2.19.4",
"mustache": "^2.3.0",
"opn": "^5.2.0",
"randomatic": "^2.0.0",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"slug": "^0.9.1",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"socketio-auth": "^0.1.0",
"tcp-port-used": "^0.1.2",
"tiny-server": "^1.0.2",
"uuid": "^3.1.0",
"watson-developer-cloud": "^3.0.3",
"write-yaml": "^1.0.0",
"xlsx": "^0.11.18"
},
"devDependencies": {
"cross-env": "^5.1.3",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"rollup": "^0.53.0",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0"
}
}