-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.33 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.33 KB
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
69
70
71
72
73
{
"name": "botium-cli",
"version": "1.1.0",
"description": "Botium - The Selenium for Chatbots",
"main": "dist/botium-cli-cjs.js",
"module": "dist/botium-cli-es.js",
"engines": {
"node": ">=10"
},
"bin": {
"botium-cli": "./bin/botium-cli.js"
},
"scripts": {
"postinstall": "node ./report.js",
"build": "npm run eslint && rollup -c",
"builddocker": "docker build . -t botium/botium-cli:$npm_package_version",
"publishdocker": "docker tag botium/botium-cli:$npm_package_version botium/botium-cli:latest && docker push botium/botium-cli:$npm_package_version && docker push botium/botium-cli:latest",
"eslint": "eslint \"./src/**/*.js\" \"./bin/**/*.js\"",
"eslint:fix": "eslint --fix \"./src/**/*.js\" \"./bin/**/*.js\"",
"test": "echo \"no tests for botium-cli yet\" && exit 0",
"update-dependencies": "npm-check-updates -u --reject rollup --timeout 60000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforequity-at/botium-cli.git"
},
"author": "Florian Treml",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeforequity-at/botium-cli/issues"
},
"homepage": "https://www.botium.ai",
"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": "^4.1.0",
"license-checker": "^25.0.1",
"npm-check-updates": "^16.10.9",
"rollup": "^2.60.0",
"rollup-plugin-babel": "^4.4.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"botium-connector-echo": "0.0.19",
"botium-core": "1.13.16",
"chai": "^4.3.7",
"debug": "^4.3.4",
"figlet": "^1.6.0",
"fs-extra": "^11.1.1",
"is-json": "^2.0.1",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"mkdirp": "^3.0.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"promise-retry": "^2.0.1",
"readline": "^1.3.0",
"request": "^2.88.2",
"slug": "^8.2.2",
"terminal-kit": "^3.0.0",
"update-dependencies": "^1.0.2",
"yargs": "^17.7.1"
}
}