-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.07 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.07 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "botium-core",
"version": "1.15.12",
"description": "The Selenium for Chatbots",
"main": "index.js",
"module": "dist/botium-es.js",
"engines": {
"node": ">=18.17"
},
"scripts": {
"postinstall": "node ./report.js",
"build": "npm run eslint && nyc npm test && nyc check-coverage --lines 50 --functions 50 --branches 35 && rollup -c",
"eslint": "eslint \"./src/**/*.js\" \"./test/**/*.js\"",
"eslint-fix": "eslint --fix \"./src/**/*.js\" \"./test/**/*.js\"",
"newpatch": "npm version patch",
"link": "npm link botium-connector-dialogflow botium-connector-webdriverio botium-connector-directline3 botium-connector-watson botium-connector-alexa-smapi botium-connector-echo",
"test": "cross-env NODE_PATH=\"./test/plugins/plugindir/fromfolder:./test/plugins/plugindir/fromfile:./test/security/resources\" mocha \"./test/**/*.spec.js\"",
"coverage:report": "nyc report --reporter=lcov npm test",
"update-dependencies": "npm-check-updates --reject chai,globby,rollup -u --timeout 120000"
},
"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://www.botium.ai",
"dependencies": {
"@babel/runtime": "^7.28.6",
"async": "^3.2.6",
"body-parser": "^2.2.2",
"bottleneck": "^2.19.5",
"csv-parse": "^6.1.0",
"debug": "^4.4.3",
"express": "^5.2.1",
"globby": "11.0.4",
"ioredis": "^5.10.0",
"is-class": "^0.0.9",
"is-json": "^2.0.1",
"jsonpath": "^1.3.0",
"lodash": "^4.17.23",
"markdown-it": "^14.1.1",
"mime-types": "^3.0.2",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"mustache": "^4.2.0",
"promise-retry": "^2.0.1",
"promise.allsettled": "^1.0.7",
"randomatic": "^3.1.1",
"rimraf": "^6.1.3",
"sanitize-filename": "^1.6.3",
"slugify": "^1.6.6",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"socketio-auth": "^0.1.1",
"tinyglobby": "^0.2.15",
"undici": "^7.22.0",
"uuid": "^9.0.1",
"word-error-rate": "0.0.7",
"write-yaml": "^1.0.0",
"xlsx": "^0.18.5",
"xregexp": "^5.1.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/node": "^7.29.0",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"chai": "4.3.10",
"chai-as-promised": "^7.1.2",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^11.7.5",
"nock": "^14.0.11",
"npm-check-updates": "^19.6.3",
"nyc": "^18.0.0",
"rollup": "2.80.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"
}
}