-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
62 lines (62 loc) · 2.54 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
{
"name": "webex-node-bot-framework",
"version": "2.5.1",
"description": "Webex Teams Bot Framework for Node JS",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha test/bot-tests.js --timeout 10000 --exit",
"test-invalid-config": "node_modules/.bin/mocha test/invalid-config-tests.js --timeout 10000 --exit",
"test-as-user": "RUN_TEST_AS_USER=true node_modules/.bin/mocha test/bot-tests.js --timeout 10000 --exit",
"test-mongo": "RUN_MONGO_TESTS=true node_modules/.bin/mocha test/bot-tests.js --timeout 10000 --exit",
"test-late-discovery": "node_modules/.bin/mocha test/late-discovery-tests.js --timeout 10000 --exit",
"test-membership-rules": "node_modules/.bin/mocha test/membership-rules-tests.js --timeout 10000 --exit",
"test-guide-mode-rules": "node_modules/.bin/mocha test/guide-rules-tests.js --timeout 10000 --exit",
"test-all": "node_modules/.bin/mocha test/bot-tests.js --timeout 20000 --exit && node_modules/.bin/mocha test/guide-rules-tests.js --timeout 10000 --exit && node_modules/.bin/mocha test/membership-rules-tests.js --timeout 10000 --exit && node_modules/.bin/mocha test/invalid-config-tests.js --timeout 10000 --exit && RUN_MONGO_TESTS=true node_modules/.bin/mocha test/bot-tests.js --timeout 10000 --exit && RUN_TEST_AS_USER=true node_modules/.bin/mocha test/bot-tests.js --timeout 10000 --exit && node_modules/.bin/mocha test/late-discovery-tests.js --timeout 10000 --exit",
"build": "cd docs && ./build.sh && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/webex/webex-node-bot-framework.git"
},
"keywords": [
"bot",
"bot framework",
"webex",
"webex teams",
"cisco"
],
"bugs": {
"url": "https://github.com/WebexSamples/webex-node-bot-framework/issues"
},
"homepage": "https://github.com/WebexSamples/webex-node-bot-framework#readme",
"author": "JP Shipherd <[email protected]>",
"license": "MIT",
"engines": {
"npm": ">=8.3.0"
},
"dependencies": {
"debug": "^4.3.4",
"eventemitter2": "^6.4.9",
"https-proxy-agent": "^5.0.1",
"lodash": "4.17.21",
"moment": "^2.29.4",
"mongodb": "^3.5.7",
"validator": "^13.7.0",
"webex": "2.60.0",
"when": "^3.7.8"
},
"overrides": {
"tough-cookie": "4.1.3",
"lodash": "4.17.21",
"lodash.pick": "3.1.0",
"semver": "7.5.4",
"request": "npm:[email protected]"
},
"devDependencies": {
"doctoc": "^2.2.0",
"dotenv": "^10.0.0",
"eslint": "^8.39.0",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^10.0.0"
}
}