stepzen 0.54.0 → 0.55.0-beta.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/README.md +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +12 -9
package/README.md
CHANGED
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stepzen",
|
|
3
3
|
"description": "The StepZen CLI",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.55.0-beta.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Darren Waddell <darren@stepzen.com>",
|
|
7
7
|
"contributors": [
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@oclif/plugin-version": "^2.2.16",
|
|
33
33
|
"@segment/analytics-node": "^2.2.0",
|
|
34
34
|
"@soluble/dsn-parser": "^1.7.5",
|
|
35
|
-
"@stepzen/fetch": "0.
|
|
36
|
-
"@stepzen/graphiql-proxy": "0.
|
|
37
|
-
"@stepzen/sdk": "0.
|
|
38
|
-
"@stepzen/transpiler": "0.
|
|
35
|
+
"@stepzen/fetch": "0.55.0-beta.0",
|
|
36
|
+
"@stepzen/graphiql-proxy": "0.55.0-beta.0",
|
|
37
|
+
"@stepzen/sdk": "0.55.0-beta.0",
|
|
38
|
+
"@stepzen/transpiler": "0.55.0-beta.0",
|
|
39
39
|
"chalk": "^4.1.2",
|
|
40
40
|
"chokidar": "^3.5.3",
|
|
41
41
|
"compare-versions": "^5.0.3",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"@types/sinon-chai": "3.2.8",
|
|
76
76
|
"@types/uuid": "^8.3.4",
|
|
77
77
|
"@types/ws": "^8.5.3",
|
|
78
|
+
"c8": "^10.1.3",
|
|
78
79
|
"chai": "^4.3.10",
|
|
79
80
|
"copyfiles": "^2.4.1",
|
|
80
81
|
"cross-env": "^7.0.3",
|
|
@@ -89,7 +90,6 @@
|
|
|
89
90
|
"mock-fs": "^5.2.0",
|
|
90
91
|
"nock": "^13.3.0",
|
|
91
92
|
"nodemon": "^2.0.7",
|
|
92
|
-
"nyc": "^15.1.0",
|
|
93
93
|
"oclif": "^4.15.28",
|
|
94
94
|
"semver": "^7.5.4",
|
|
95
95
|
"sinon": "^17.0.1",
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"postpack": "rm -f oclif.manifest.json",
|
|
128
128
|
"posttest": "eslint . --ignore-path .prettierignore",
|
|
129
129
|
"prepack": "oclif manifest && oclif readme",
|
|
130
|
-
"test": "npm run build && cross-env STEPZEN_DISABLE_ANALYTICS=true STEPZEN_INTERACTIVE=true STEPZEN_SERVER_URL=https://test.stepzen.net TS_NODE_PROJECT='test/tsconfig.json'
|
|
130
|
+
"test": "npm run build && cross-env STEPZEN_DISABLE_ANALYTICS=true STEPZEN_INTERACTIVE=true STEPZEN_SERVER_URL=https://test.stepzen.net TS_NODE_PROJECT='test/tsconfig.json' c8 mocha --forbid-only \"test/**/*.test.ts\"",
|
|
131
131
|
"test:single:example": "npm run test:single -- test/src/shared/curl-parser.test.ts",
|
|
132
132
|
"test:single": "npm run build && cross-env STEPZEN_DISABLE_ANALYTICS=true STEPZEN_INTERACTIVE=true STEPZEN_SERVER_URL=https://test.stepzen.net TS_NODE_PROJECT='test/tsconfig.json' mocha test/_global.test.ts",
|
|
133
133
|
"clean": "rm -rf lib tsconfig.tsbuildinfo",
|
|
@@ -152,7 +152,10 @@
|
|
|
152
152
|
},
|
|
153
153
|
"--comment--": "workaround for CVE-2024-4067 and CVE-2024-21538 and CVE-2025-7783",
|
|
154
154
|
"micromatch": "^4.0.8",
|
|
155
|
-
"cross-spawn": "^7.0.6"
|
|
155
|
+
"cross-spawn": "^7.0.6",
|
|
156
|
+
"minimatch": {
|
|
157
|
+
"brace-expansion": "^2.0.2"
|
|
158
|
+
}
|
|
156
159
|
},
|
|
157
|
-
"gitHead": "
|
|
160
|
+
"gitHead": "e2728d44bb8d86ee61fba5216cd6558b5c5766e6"
|
|
158
161
|
}
|