-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "botium-connector-botkit-websocket",
"version": "0.2.0",
"description": "Botium Connector for Botkit via websockets",
"main": "dist/botium-connector-botkit-websocket-cjs.js",
"module": "dist/botium-connector-botkit-websocket-es.js",
"scripts": {
"build": "npm run eslint && rollup -c",
"eslint": "eslint index.js",
"test": "mocha tests/spec/ --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Naktibalda/botium-connector-botkit-websocket.git"
},
"author": "Gintautas Miselis <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"botium-bindings": "^2.0.18",
"chai": "^4.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.1",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"debug": "^4.1.1",
"ws": "^7.1.2"
},
"bugs": {
"url": "https://github.com/Naktibalda/botium-connector-botkit-websocket/issues"
},
"homepage": "https://github.com/Naktibalda/botium-connector-botkit-websocket#readme",
"keywords": [
"botium",
"botkit",
"test"
]
}