mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 05:59:49 -06:00
* chore(deps): Update eslint to 6.8.0 🌟 * fix missing dangling commas for linter * fix missing dangling commas for linter * more lint fixes * yarn lock Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
111 lines
3.1 KiB
JSON
111 lines
3.1 KiB
JSON
{
|
|
"name": "cypress",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"prebuild": "yarn postinstall && node ./scripts/start-build.js",
|
|
"build": "node ./scripts/build.js",
|
|
"dtslint": "dtslint types",
|
|
"postinstall": "node ./scripts/post-install.js",
|
|
"lint": "eslint --fix *.js scripts/*.js bin/* lib/*.js lib/**/*.js test/*.js test/**/*.js",
|
|
"prerelease": "yarn build",
|
|
"release": "cd build && releaser --no-node --no-changelog",
|
|
"size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "node --inspect-brk $(yarn bin mocha)",
|
|
"test-dependencies": "dependency-check . --no-dev",
|
|
"test-unit": "yarn unit",
|
|
"test-watch": "yarn unit --watch",
|
|
"types": "yarn dtslint",
|
|
"unit": "cross-env BLUEBIRD_DEBUG=1 NODE_ENV=test mocha --reporter mocha-multi-reporters --reporter-options configFile=../mocha-reporter-config.json"
|
|
},
|
|
"dependencies": {
|
|
"@cypress/listr-verbose-renderer": "0.4.1",
|
|
"@cypress/xvfb": "1.2.4",
|
|
"@types/sizzle": "2.3.2",
|
|
"arch": "2.1.1",
|
|
"bluebird": "3.7.2",
|
|
"cachedir": "2.3.0",
|
|
"chalk": "3.0.0",
|
|
"check-more-types": "2.24.0",
|
|
"commander": "4.1.0",
|
|
"common-tags": "1.8.0",
|
|
"debug": "4.1.1",
|
|
"eventemitter2": "4.1.2",
|
|
"execa": "2.0.0",
|
|
"executable": "4.1.1",
|
|
"extract-zip": "1.6.7",
|
|
"fs-extra": "8.1.0",
|
|
"getos": "3.1.4",
|
|
"is-ci": "2.0.0",
|
|
"is-installed-globally": "0.1.0",
|
|
"lazy-ass": "1.6.0",
|
|
"listr": "0.14.3",
|
|
"lodash": "4.17.15",
|
|
"log-symbols": "3.0.0",
|
|
"minimist": "1.2.0",
|
|
"moment": "2.24.0",
|
|
"ospath": "1.2.2",
|
|
"pretty-bytes": "5.3.0",
|
|
"ramda": "0.26.1",
|
|
"request": "2.88.0",
|
|
"request-progress": "3.0.0",
|
|
"supports-color": "7.1.0",
|
|
"tmp": "0.1.0",
|
|
"untildify": "4.0.0",
|
|
"url": "0.11.0",
|
|
"yauzl": "2.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/sinon-chai": "1.1.0",
|
|
"@packages/root": "*",
|
|
"@types/blob-util": "1.3.3",
|
|
"@types/bluebird": "3.5.29",
|
|
"@types/chai": "4.2.7",
|
|
"@types/chai-jquery": "1.1.40",
|
|
"@types/jquery": "3.3.31",
|
|
"@types/lodash": "4.14.149",
|
|
"@types/minimatch": "3.0.3",
|
|
"@types/mocha": "5.2.7",
|
|
"@types/sinon": "7.5.1",
|
|
"@types/sinon-chai": "3.2.3",
|
|
"babel-cli": "6.26.0",
|
|
"babel-preset-es2015": "6.24.1",
|
|
"chai": "3.5.0",
|
|
"chai-as-promised": "7.1.1",
|
|
"chai-string": "1.5.0",
|
|
"cross-env": "6.0.3",
|
|
"dependency-check": "3.4.1",
|
|
"dtslint": "0.9.0",
|
|
"eslint": "6.8.0",
|
|
"execa-wrap": "1.4.0",
|
|
"hasha": "5.0.0",
|
|
"mocha": "6.2.2",
|
|
"mock-fs": "4.9.0",
|
|
"mocked-env": "1.2.4",
|
|
"nock": "9.6.1",
|
|
"postinstall-postinstall": "2.0.0",
|
|
"proxyquire": "2.1.0",
|
|
"resolve-pkg": "2.0.0",
|
|
"shelljs": "0.8.3",
|
|
"sinon": "7.2.2",
|
|
"snap-shot-it": "7.9.2",
|
|
"spawn-mock": "1.0.0",
|
|
"strip-ansi": "4.0.0"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"index.js",
|
|
"types/**/*.d.ts"
|
|
],
|
|
"bin": {
|
|
"cypress": "bin/cypress"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"types": "types"
|
|
}
|