mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-14 02:50:04 -06:00
Co-authored-by: amehta265 <65267668+amehta265@users.noreply.github.com> Co-authored-by: Bill Glesias <bglesias@gmail.com> Co-authored-by: mattvCypress <mattv@cypress.io> Co-authored-by: Ryan Manuel <ryanm@cypress.io> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Jordan <jordan@jpdesigning.com> Co-authored-by: Adam Stone <adams@cypress.io>
49 lines
1.3 KiB
JSON
49 lines
1.3 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",
|
|
"clean": "rimraf lib/*.js",
|
|
"check-ts": "tsc --noEmit",
|
|
"clean-deps": "rimraf 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 -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",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"circular-json": "0.5.9",
|
|
"engine.io": "5.2.1",
|
|
"engine.io-parser": "4.0.2",
|
|
"socket.io": "4.0.1",
|
|
"socket.io-client": "4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "3.5.0",
|
|
"cross-env": "6.0.3",
|
|
"mocha": "3.5.3",
|
|
"resolve-pkg": "2.0.0",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib",
|
|
"patches"
|
|
],
|
|
"types": "lib/socket.ts",
|
|
"workspaces": {
|
|
"nohoist": [
|
|
"engine.io",
|
|
"engine.io-parser",
|
|
"socket.io",
|
|
"socket.io/socket.io-parser",
|
|
"socket.io-client",
|
|
"socket.io-client/socket.io-parser"
|
|
]
|
|
}
|
|
}
|