mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-21 06:30:01 -06:00
close #1984 improve error logging for `cypress verify` close #1985 remove "skipping install" message to local users, keep in CI
105 lines
2.9 KiB
JSON
105 lines
2.9 KiB
JSON
{
|
|
"name": "cypress",
|
|
"version": "0.0.0",
|
|
"main": "index.js",
|
|
"private": true,
|
|
"bin": {
|
|
"cypress": "bin/cypress"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run test-unit",
|
|
"test-unit": "npm run dtslint && npm run unit",
|
|
"test-watch": "npm run unit -- --watch",
|
|
"test-dependencies": "bin-up deps-ok && dependency-check . --no-dev",
|
|
"test-debug": "node --inspect --debug-brk $(bin-up _mocha)",
|
|
"test-cov": "nyc npm run unit",
|
|
"unit": "BLUEBIRD_DEBUG=1 NODE_ENV=test bin-up mocha --reporter mocha-multi-reporters --reporter-options configFile=../mocha-reporter-config.json",
|
|
"lint": "bin-up eslint --fix *.js bin/* lib/*.js lib/**/*.js test/*.js test/**/*.js",
|
|
"dtslint": "dtslint types",
|
|
"prebuild": "npm run test-dependencies && node ./scripts/start-build.js",
|
|
"build": "node ./scripts/build.js",
|
|
"prerelease": "npm run build",
|
|
"release": "cd build && releaser --no-node --no-changelog",
|
|
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
|
|
},
|
|
"nyc": {
|
|
"exclude": [
|
|
"test",
|
|
"scripts"
|
|
]
|
|
},
|
|
"types": "types",
|
|
"dependencies": {
|
|
"@cypress/listr-verbose-renderer": "0.4.1",
|
|
"@cypress/xvfb": "1.2.3",
|
|
"@types/blob-util": "1.3.3",
|
|
"@types/bluebird": "3.5.18",
|
|
"@types/chai": "4.0.8",
|
|
"@types/chai-jquery": "1.1.35",
|
|
"@types/jquery": "3.2.16",
|
|
"@types/lodash": "4.14.87",
|
|
"@types/minimatch": "3.0.3",
|
|
"@types/mocha": "2.2.44",
|
|
"@types/sinon": "4.0.0",
|
|
"@types/sinon-chai": "2.7.29",
|
|
"bluebird": "3.5.0",
|
|
"cachedir": "1.3.0",
|
|
"chalk": "2.4.1",
|
|
"check-more-types": "2.24.0",
|
|
"commander": "2.11.0",
|
|
"common-tags": "1.4.0",
|
|
"debug": "3.1.0",
|
|
"execa": "0.10.0",
|
|
"executable": "4.1.1",
|
|
"extract-zip": "1.6.6",
|
|
"fs-extra": "4.0.1",
|
|
"getos": "2.8.4",
|
|
"glob": "7.1.2",
|
|
"is-ci": "1.0.10",
|
|
"is-installed-globally": "0.1.0",
|
|
"lazy-ass": "1.6.0",
|
|
"listr": "0.12.0",
|
|
"lodash": "4.17.4",
|
|
"log-symbols": "2.2.0",
|
|
"minimist": "1.2.0",
|
|
"progress": "1.1.8",
|
|
"ramda": "0.24.1",
|
|
"request": "2.87.0",
|
|
"request-progress": "0.3.1",
|
|
"supports-color": "5.1.0",
|
|
"tmp": "0.0.31",
|
|
"url": "0.11.0",
|
|
"yauzl": "2.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/releaser": "0.2.2",
|
|
"@cypress/sinon-chai": "1.0.0",
|
|
"babel-cli": "^6.24.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"bin-up": "^1.1.0",
|
|
"chai": "^3.5.0",
|
|
"chai-string": "1.4.0",
|
|
"clear-module": "^2.1.0",
|
|
"dependency-check": "^2.8.0",
|
|
"dtslint": "0.2.0",
|
|
"execa-wrap": "1.1.0",
|
|
"mock-fs": "4.5.0",
|
|
"nock": "^9.0.9",
|
|
"nyc": "11.7.1",
|
|
"proxyquire": "2.0.1",
|
|
"shelljs": "0.7.8",
|
|
"sinon": "5.0.7",
|
|
"snap-shot-it": "^5.0.0",
|
|
"strip-ansi": "4.0.0"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"index.js",
|
|
"types/*.d.ts"
|
|
]
|
|
}
|