-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@zowe/bot",
"version": "1.0.0",
"description": "IBM Common Bot Framework",
"author": "IBM",
"license": "EPL-2.0",
"private": true,
"type": "commonjs",
"main": "dist/package/index.js",
"types": "./dist/package/index.d.ts",
"scripts": {
"build": "gulp build",
"packaging": "gulp packaging",
"lint": "eslint \"src/**/*.ts\"",
"fix": "eslint \"src/**/*.ts\" --fix",
"test:unit": "jest \"__tests__.*?__unit__.*\\.(spec|test)\\.tsx?$\" --coverage ",
"test:integration": "jest \"__tests__.*?__integration__.*\\.(spec|test)\\.tsx?$\" --coverage false",
"test:system": "jest \"__tests__.*?__system__.*\\.(spec|test)\\.tsx?$\" --coverage false",
"test:all": "npm run test:unit && npm run test:integration && npm run test:system",
"checkDeps": "madge -c dist",
"updateDeps": "npx npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/zowe/zowe-bot.git"
},
"keywords": [
"zowe",
"bot"
],
"dependencies": {
"@slack/bolt": "3.12.2",
"@slack/web-api": "6.8.0",
"botbuilder": "4.19.0",
"express": "4.18.2",
"superagent": "8.0.6",
"winston": "3.8.2",
"ws": "8.11.0"
},
"devDependencies": {
"@types/express": ">=4.17.14",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.2.6",
"@types/node": ">=18.11.4",
"@types/superagent": ">=4.1.15",
"@typescript-eslint/eslint-plugin": ">=5.40.1",
"@typescript-eslint/parser": ">=5.40.1",
"eslint": ">=8.26.0",
"eslint-config-google": ">=0.14.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^11.1.0",
"gulp": ">=4.0.2",
"gulp-clean": ">=0.4.0",
"gulp-eslint": ">=6.0.0",
"gulp-if": ">=3.0.0",
"gulp-jshint": ">=2.1.0",
"gulp-typescript": ">=6.0.0-alpha.1",
"jest": "^29.2.6",
"jest-environment-jsdom": "^29.3.1",
"jest-sonar-reporter": "^2.0.0",
"jshint": ">=2.13.5",
"madge": "^5.0.1",
"moment": ">=2.29.4",
"npm-check-updates": "^16.3.15",
"prettier": "2.7.1",
"ts-jest": "^29.0.5",
"ts-node": ">=10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "4.8.4"
},
"jestSonar": {
"reportPath": "__tests__/__results__/jest-sonar"
}
}