mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-21 06:30:49 -06:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "cypress-monorepo",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "node dev/start.js",
|
|
"watch": "npm run all watch",
|
|
"build": "npm run all build",
|
|
"all": "node dev/run.js",
|
|
"test": "echo 'This root monorepo is only for local development and new contributions. There are no tests.' && exit(1)",
|
|
"link": "node ./dev/link-packages.js",
|
|
"postinstall": "CYPRESS_DOWNLOAD=0 npm run link && npm run all install && npm run build",
|
|
"clean-deps": "npm run all clean-deps",
|
|
"docker": "./dev/run-docker-local.sh",
|
|
"lint": "standard --verbose --fix dev/*.js",
|
|
"commit": "commit-wizard"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/npm-run-all": "^4.0.4",
|
|
"ascii-table": "0.0.9",
|
|
"bluebird": "^3.4.5",
|
|
"eslint": "^3.18.0",
|
|
"eslint-plugin-mocha": "^4.9.0",
|
|
"fs-extra": "^2.1.2",
|
|
"pre-git": "^3.15.0",
|
|
"standard": "^10.0.2"
|
|
},
|
|
"config": {
|
|
"pre-git": {
|
|
"pre-commit": [
|
|
"npm run lint",
|
|
"npm run all lint"
|
|
],
|
|
"pre-push": [],
|
|
"post-commit": [],
|
|
"post-checkout": [],
|
|
"post-merge": []
|
|
}
|
|
},
|
|
"license": "MIT"
|
|
}
|