mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-11 01:29:59 -06:00
* fix: nodejs 22 deprecation when building * Update CHANGELOG.md * update other locations (#11) * Update package.json * Update package.json * Update yarn.lock * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md * Update cli/CHANGELOG.md * Update cli/CHANGELOG.md --------- Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@packages/electron",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build-binary": "node ./bin/cypress-electron --install",
|
|
"clean-deps": "rimraf node_modules",
|
|
"postinstall": "echo '@packages/electron needs: yarn build'",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
|
|
"start": "./bin/cypress-electron",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "yarn test-unit --inspect-brk=5566",
|
|
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
|
|
"test-watch": "yarn test-unit --watch"
|
|
},
|
|
"dependencies": {
|
|
"@packages/icons": "0.0.0-development",
|
|
"bluebird": "3.5.3",
|
|
"debug": "^4.3.4",
|
|
"fs-extra": "9.1.0",
|
|
"lodash": "^4.17.21",
|
|
"minimist": "1.2.8"
|
|
},
|
|
"devDependencies": {
|
|
"@electron/fuses": "1.8.0",
|
|
"@electron/packager": "18.3.4",
|
|
"execa": "4.1.0",
|
|
"mocha": "3.5.3",
|
|
"systeminformation": "5.22.8"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"bin": {
|
|
"cypress-electron": "./bin/cypress-electron"
|
|
},
|
|
"nx": {}
|
|
}
|