@brightsec/cli 13.9.0 → 13.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightsec/cli",
3
- "version": "13.9.0",
3
+ "version": "13.10.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -59,6 +59,7 @@
59
59
  "@commitlint/config-conventional": "^20.3.1",
60
60
  "@semantic-release/exec": "^7.1.0",
61
61
  "@semantic-release/git": "^10.0.1",
62
+ "@types/cross-spawn": "^6.0.6",
62
63
  "@types/har-format": "^1.2.7",
63
64
  "@types/jest": "^30.0.0",
64
65
  "@types/js-yaml": "^4.0.2",
@@ -74,6 +75,7 @@
74
75
  "clean-webpack-plugin": "^4.0.0",
75
76
  "conventional-changelog-conventionalcommits": "^9.1.0",
76
77
  "cross-env": "^7.0.3",
78
+ "cross-spawn": "^7.0.6",
77
79
  "eslint": "^8.22.0",
78
80
  "eslint-config-prettier": "^8.5.0",
79
81
  "eslint-import-resolver-typescript": "^3.4.2",
@@ -94,7 +96,9 @@
94
96
  "typescript": "^4.7.4",
95
97
  "webpack": "^5.104.1",
96
98
  "webpack-cli": "^6.0.1",
97
- "webpack-node-externals": "^3.0.0"
99
+ "webpack-node-externals": "^3.0.0",
100
+ "wiremock": "^3.13.2",
101
+ "wiremock-captain": "^4.1.3"
98
102
  },
99
103
  "files": [
100
104
  "dist"
@@ -151,17 +155,13 @@
151
155
  "lint": "eslint -c .eslintrc.js src tests",
152
156
  "format": "prettier --check src tests",
153
157
  "test:unit": "cross-env NODE_ENV=test jest src",
154
- "test:e2e": "cross-env NODE_ENV=test jest tests",
158
+ "test:e2e": "cross-env NODE_ENV=test jest tests/e2e",
159
+ "test:smoke": "cross-env NODE_ENV=test jest tests/smoke",
155
160
  "build": "webpack --config webpack.config.js --mode=production",
156
161
  "build:pkg": "pkg .",
157
162
  "prepare": "is-ci || husky install",
158
163
  "start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register src/index.ts"
159
164
  },
160
- "overrides": {
161
- "ts-node": {
162
- "diff": "8.0.3"
163
- }
164
- },
165
165
  "brightCli": {
166
166
  "distribution": "npm"
167
167
  }