mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-10 16:50:03 -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>
41 lines
925 B
JSON
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.0.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"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|