Files
cypress/packages/https-proxy/package.json

44 lines
1.3 KiB
JSON

{
"name": "@packages/https-proxy",
"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",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"regenerate:certs": "cd ./test/helpers/certs && ./regenerate-certs.sh",
"test": "yarn test-unit",
"test-debug": "vitest --inspect-brk --test-timeout=0 --hook-timeout=0",
"test-unit": "vitest run",
"test-watch": "vitest --watch"
},
"dependencies": {
"debug": "^4.3.4",
"fs-extra": "9.1.0",
"lodash": "^4.17.21",
"node-forge": "^1.3.0",
"semaphore": "1.1.0"
},
"devDependencies": {
"@cypress/debugging-proxy": "2.0.1",
"@cypress/request": "^3.0.9",
"@cypress/request-promise": "^5.0.0",
"@packages/network": "0.0.0-development",
"@types/semaphore": "1.1.4",
"tsx": "^4.20.6",
"vitest": "^3.2.4"
},
"files": [
"cjs/*",
"esm/*"
],
"types": "cjs/index.d.ts",
"license": "MIT",
"module": "esm/index.js",
"nx": {}
}