Files
cypress/cli/package.json

71 lines
2.0 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": "$(bin-up mocha) --reporter mocha-multi-reporters --reporter-options configFile=../mocha-reporter-config.json",
"test-watch": "$(bin-up mocha) --watch",
"test-dependencies": "$(bin-up deps-ok) && dependency-check . --no-dev",
"test-debug": "node --inspect --debug-brk $(bin-up _mocha)",
"lint": "$(bin-up eslint) --fix *.js bin/* lib/*.js lib/**/*.js test/*.js test/**/*.js",
"prebuild": "npm run test-dependencies && ./scripts/build.sh",
"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}\";"
},
"dependencies": {
"@cypress/listr-verbose-renderer": "0.4.1",
"@cypress/xvfb": "1.0.4",
"bluebird": "3.5.0",
"chalk": "2.1.0",
"commander": "2.9.0",
"common-tags": "1.4.0",
"debug": "2.6.8",
"extract-zip": "1.6.5",
"fs-extra": "4.0.1",
"getos": "2.8.4",
"glob": "7.1.2",
"is-ci": "1.0.10",
"is-installed-globally": "0.1.0",
"listr": "0.12.0",
"lodash": "4.17.4",
"minimist": "1.2.0",
"progress": "1.1.8",
"ramda": "0.24.1",
"request": "2.81.0",
"request-progress": "0.3.1",
"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.0.1",
"chai": "^3.5.0",
"clear-module": "^2.1.0",
"dependency-check": "^2.8.0",
"execa-wrap": "1.0.0",
"nock": "^9.0.9",
"sinon": "3.2.1",
"snap-shot-it": "4.0.0",
"strip-ansi": "4.0.0"
},
"files": [
"bin",
"lib",
"index.js"
]
}