Files
cypress/packages/example/package.json
Bill Glesias f6e0744e38 breaking: update execa from 1.0.0 to 4.1.0 (#32238)
* breaking: update execa from 1.0.0 to 4.1.0 which breaks the yielded cy.exec() object from yielding property code and instead yields exitCode

* fix launchpad tests on linux

* Update cli/CHANGELOG.md

---------

Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
2025-08-18 11:52:24 -04:00

41 lines
925 B
JSON

{
"name": "@packages/example",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"scripts": {
"build": "node ./bin/build.js && gulp build",
"clean-deps": "rimraf node_modules",
"predeploy": "yarn build",
"deploy": "gh-pages -d build -b gh-pages",
"postinstall": "echo '@packages/example needs: yarn build'",
"test": "yarn test-unit",
"test-e2e": "cypress run",
"test-unit": "echo 'no unit tests'"
},
"devDependencies": {
"cypress-example-kitchensink": "5.1.0",
"gh-pages": "5.0.0",
"gulp": "4.0.2",
"gulp-clean": "0.4.0",
"gulp-rev-all": "2.0.2",
"resolve-pkg": "2.0.0"
},
"files": [
"cypress",
"lib"
],
"types": "index.d.ts",
"nx": {
"targets": {
"build": {
"outputs": [
"{projectRoot}/cypress",
"{projectRoot}/app",
"{projectRoot}/build"
]
}
}
}
}