Files
cypress/packages/socket/package.json
Zach Bloomquist e2ea5bf663 Fix patch-package (#6583)
* fix patch-package

- don't hoist dependencies that are patched, this way we can be assured the path is always correct
- put all patches in root postinstall so postinstall-postinstall is guaranteed to work

* wip

* Revert "fix patch-package"

This reverts commit 5583f21478.

* use per package patches

* don't ignor engines or silence

* try: make sinon patch devonly

* fix socketspec

* run full ci on this branch

* bump xcode tools to bump mac node version

* also run appveyor

* Revert "run full ci on this branch"

This reverts commit c3e52d09ec.

* Revert "also run appveyor"

This reverts commit bfe7b0499a.
2020-02-28 12:17:54 -05:00

35 lines
885 B
JSON

{
"name": "@packages/socket",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"clean-deps": "rm -rf node_modules",
"postinstall": "patch-package",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "cross-env NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"test-watch": "cross-env NODE_ENV=test mocha --watch"
},
"dependencies": {
"socket.io": "2.3.0",
"socket.io-circular-parser": "cypress-io/socket.io-circular-parser#unpatched-has-binary-2",
"socket.io-client": "2.3.0"
},
"devDependencies": {
"chai": "3.5.0",
"cross-env": "6.0.3",
"mocha": "3.5.3",
"resolve-pkg": "2.0.0"
},
"files": [
"lib",
"patches"
],
"workspaces": {
"nohoist": [
"**"
]
}
}