-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "botium-bindings",
"version": "2.1.15",
"engines": {
"node": ">=14"
},
"bin": {
"botium-bindings": "./bin/botium-bindings.js"
},
"scripts": {
"postinstall": "node ./report.js",
"build": "npm run eslint && rollup -c",
"eslint": "eslint \"./bin/**/*.js\" \"./src/**/*.js\"",
"eslint:fix": "eslint --fix \"./bin/**/*.js\" \"./src/**/*.js\"",
"test": "echo \"no tests specified\" && exit 0",
"update-dependencies": "npm-check-updates --reject rollup -u --timeout 120000"
},
"description": "Binding Botium, the Selenium for Chatbots, to test runners",
"main": "index.js",
"author": "Botium GmbH",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.21.0",
"async": "^3.2.4",
"botium-core": "1.13.16",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"mkdirp": "^3.0.0",
"promise-retry": "^2.0.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"license-checker": "^25.0.1",
"npm-check-updates": "^16.10.8",
"rollup": "^2.60.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforequity-at/botium-bindings.git"
},
"keywords": [
"continuous",
"testing",
"chatbot"
],
"bugs": {
"url": "https://github.com/codeforequity-at/botium-core/issues"
},
"homepage": "https://www.botium.ai"
}