mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 14:10:57 -06:00
68 lines
1.6 KiB
JSON
68 lines
1.6 KiB
JSON
{
|
|
"name": "cypress-monorepo",
|
|
"version": "0.19.1",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"cypress": "bin/cypress"
|
|
},
|
|
"scripts": {
|
|
"start": "node start.js",
|
|
"watch": "npm run all watch",
|
|
"build": "npm run all build",
|
|
"all": "node cli.js --exec run",
|
|
"test": "echo 'This runs just the CLI tests' && mocha",
|
|
"test-watch": "mocha --watch",
|
|
"link": "node ./dev/link-packages.js",
|
|
"postinstall": "npm run link && npm run all install && npm run build",
|
|
"clean-deps": "npm run all clean-deps",
|
|
"lint": "standard --verbose --fix dev/*.js",
|
|
"commit": "commit-wizard"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@cypress/npm-run-all": "^4.0.4",
|
|
"ascii-table": "0.0.9",
|
|
"chai": "^3.5.0",
|
|
"eslint": "^3.18.0",
|
|
"eslint-plugin-mocha": "^4.9.0",
|
|
"mocha": "^3.2.0",
|
|
"nock": "^9.0.9",
|
|
"pre-git": "^3.15.0",
|
|
"sinon": "^2.1.0",
|
|
"sinon-chai": "^2.9.0",
|
|
"standard": "^10.0.2"
|
|
},
|
|
"dependencies": {
|
|
"app-module-path": "^1.1.0",
|
|
"bluebird": "^3.4.5",
|
|
"chalk": "^1.1.3",
|
|
"commander": "^2.8.1",
|
|
"debug": "^2.6.8",
|
|
"extract-zip": "^1.6.0",
|
|
"fs-extra": "^2.1.2",
|
|
"getos": "^2.8.4",
|
|
"glob": "^7.0.6",
|
|
"lodash": "^4.16.3",
|
|
"minimist": "^1.2.0",
|
|
"progress": "^1.1.8",
|
|
"request": "^2.81.0",
|
|
"request-progress": "^0.3.1",
|
|
"tmp": "0.0.31",
|
|
"url": "^0.11.0",
|
|
"xvfb": "cypress-io/node-xvfb"
|
|
},
|
|
"config": {
|
|
"pre-git": {
|
|
"pre-commit": [
|
|
"npm run lint",
|
|
"npm run all lint"
|
|
],
|
|
"pre-push": [],
|
|
"post-commit": [],
|
|
"post-checkout": [],
|
|
"post-merge": []
|
|
}
|
|
}
|
|
}
|