mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-25 10:19:30 -05:00
513655cf83
* fix(deps): remediate package vulnerabilities - Bump minimatch from 3.1.2 to 3.1.3 in data-context, driver, and network packages to address ReDoS vulnerability - Add yarn resolutions to pin minimatch across transitive dependencies (lerna, nx, editorconfig, graphql-config, mocha, serve-handler) - Add serialize-javascript 7.0.3 resolution to fix XSS vulnerability - Remove obsolete socket.io-parser resolution - Bump vite from 3.2.11 to 4.5.12 in outdated-deps test projects and update corresponding e2e test assertions - Bump Angular 21 test project dependencies from ^21.0.0 to ^21.2.0 * fix(deps): pin mocha minimatch resolution to 3.1.3 - Change mocha-7.2.0/minimatch resolution from 5.1.8 to 3.1.3 since mocha 7.2.0 depends on minimatch ^3.0.4, which is incompatible with the 5.x major version. This removes the unused minimatch@5.1.8 entry from yarn.lock. * docs(changelog): add entries for minimatch and serialize-javascript upgrades - Add dependency update changelog entries for minimatch 3.1.3 and serialize-javascript 7.0.3 vulnerability remediations in PR #33461 * chore: update CI cache version to 03-10-2026 * docs(cli): move minimatch and serialize-javascript entries to 15.13.0 Move the minimatch and serialize-javascript dependency upgrade entries from 15.12.0 to the pending 15.13.0 release section so they are listed under the correct version. Closes #33461 Made-with: Cursor
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "@packages/network",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "cjs/index.js",
|
|
"scripts": {
|
|
"build": "yarn build:esm && yarn build:cjs",
|
|
"build-prod": "yarn build",
|
|
"build:cjs": "rimraf cjs && tsc -p tsconfig.cjs.json",
|
|
"build:esm": "rimraf esm && tsc -p tsconfig.esm.json",
|
|
"check-ts": "tsc -p tsconfig.cjs.json --noEmit && yarn -s tslint -p tsconfig.cjs.json",
|
|
"clean": "rimraf cjs esm",
|
|
"clean-deps": "rimraf node_modules",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "vitest --inspect-brk --no-file-parallelism --test-timeout=0 --hook-timeout=0",
|
|
"test-unit": "vitest run",
|
|
"test-watch": "yarn test-unit --watch",
|
|
"tslint": "tslint --config ../ts/tslint.json --project .",
|
|
"watch": "tsc -p tsconfig.cjs.json --watch"
|
|
},
|
|
"dependencies": {
|
|
"concat-stream": "1.6.2",
|
|
"debug": "^4.3.4",
|
|
"fs-extra": "9.1.0",
|
|
"lodash": "^4.17.21",
|
|
"minimatch": "3.1.3",
|
|
"node-forge": "^1.3.0",
|
|
"proxy-from-env": "1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/debugging-proxy": "2.0.1",
|
|
"@cypress/request": "^3.0.10",
|
|
"@cypress/request-promise": "^5.0.0",
|
|
"@packages/network-tools": "0.0.0-development",
|
|
"@packages/socket": "0.0.0-development",
|
|
"@types/concat-stream": "1.6.1",
|
|
"@types/node": "22.18.7",
|
|
"@types/proxy-from-env": "1.0.4",
|
|
"cross-fetch": "^4.1.0",
|
|
"express": "4.21.0",
|
|
"rimraf": "6.1.1",
|
|
"typescript": "~5.4.5",
|
|
"uuid": "^8.3.2",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"files": [
|
|
"cjs",
|
|
"esm"
|
|
],
|
|
"types": "./cjs/index.d.ts",
|
|
"license": "MIT",
|
|
"module": "esm/index.js"
|
|
} |