Files
cypress/cli/package.json
Gleb Bahmutov 8e1776c870 Issue 146: uniform CLI error reporting (#149)
* cli: shorter install message without undefined for #146

* cli: show relative path after install

* cli: debug install process

* cli: print message if using CYPRESS_VERSION

* cli: tests for CYPRESS_VERSION install

* cli: needed version message

* cli: verify app after download on install

* cli: do not verify app on install, wait until it runs

* cli: add verify command

* cli: good messags for missing app binary

* cli: xvfb error

* add missing app error

* linting

* cli: errors reported using same function

* print stack in error message for some errors

* show path checked

* use same error mechanism for download errors

* cli: unzip should report error the same way as the rest of CLI

* update some error language

* consolidate urls in error messages

* show terminal info

* terminal check outside of code

* cli: detect CI, do not use progress bar

* cli: test mock bar

* remove context.only
2017-06-09 17:37:48 -04:00

62 lines
1.4 KiB
JSON

{
"name": "cypress",
"version": "0.19.2",
"main": "index.js",
"bin": {
"cypress": "bin/cypress"
},
"scripts": {
"postinstall": "node index.js --exec install",
"test": "npm run test-unit",
"test-unit": "mocha",
"test-watch": "mocha --watch",
"lint": "$(bin-up eslint) --fix *.js bin/* lib/*.js lib/**/*.js test/*.js test/**/*.js",
"pretest": "npm run lint"
},
"dependencies": {
"bluebird": "^3.4.5",
"chalk": "^1.1.3",
"commander": "^2.8.1",
"common-tags": "^1.4.0",
"debug": "^2.6.8",
"extract-zip": "^1.6.0",
"fs-extra": "^2.1.2",
"getos": "^2.8.4",
"glob": "^7.0.6",
"is-ci": "^1.0.10",
"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"
},
"devDependencies": {
"bin-up": "^1.0.1",
"chai": "^3.5.0",
"clear-module": "^2.1.0",
"mocha": "^3.2.0",
"nock": "^9.0.9",
"ramda": "^0.24.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"snap-shot": "^2.17.0"
},
"files": [
"bin",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress.git"
},
"author": "Brian Mann",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/cypress/issues"
},
"homepage": "https://github.com/cypress-io/cypress"
}