mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-03 21:19:44 -06:00
* chore(deps): update dependency cross-env to v7 * empty commit * add or remove the cross-env to each package depending on how its currently used --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "@packages/socket",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"browser": "lib/browser.ts",
|
|
"scripts": {
|
|
"build-prod": "tsc || echo 'built, with type errors' && rm lib/browser.js",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"clean": "rimraf lib/*.js",
|
|
"clean-deps": "rimraf node_modules",
|
|
"postinstall": "patch-package",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "yarn test-unit --inspect-brk=5566",
|
|
"test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
|
|
"test-watch": "cross-env NODE_ENV=test mocha -r @packages/ts/register --watch",
|
|
"tslint": "tslint --config ../ts/tslint.json --project ."
|
|
},
|
|
"dependencies": {
|
|
"component-emitter": "1.3.0",
|
|
"debug": "^4.4.0",
|
|
"engine.io": "6.4.2",
|
|
"engine.io-parser": "4.0.2",
|
|
"flatted": "3.2.9",
|
|
"socket.io": "4.0.1",
|
|
"socket.io-client": "4.0.1",
|
|
"socket.io-parser": "4.0.5",
|
|
"uuid": "8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/types": "0.0.0-development",
|
|
"@types/uuid": "8.3.2",
|
|
"chai": "3.5.0",
|
|
"cross-env": "7.0.3",
|
|
"devtools-protocol": "0.0.1459876",
|
|
"mocha": "3.5.3",
|
|
"resolve-pkg": "2.0.0"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib",
|
|
"patches"
|
|
],
|
|
"types": "lib/socket.ts",
|
|
"workspaces": {
|
|
"nohoist": [
|
|
"devtools-protocol",
|
|
"engine.io",
|
|
"engine.io-parser",
|
|
"socket.io",
|
|
"socket.io/socket.io-parser",
|
|
"socket.io-client",
|
|
"socket.io-client/socket.io-parser"
|
|
]
|
|
},
|
|
"nx": {}
|
|
}
|