mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-25 00:19:11 -05:00
f920dcbd0d
* chore: enforce 'no-implicit-dependencies' on tslint * downgrade chalk version for errors package
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "@packages/launcher",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"scripts": {
|
|
"build-prod": "tsc --project .",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"clean": "rimraf --glob \"lib/*.js\" && rimraf --glob \"lib/**/*.js\" || true",
|
|
"clean-deps": "rimraf node_modules",
|
|
"clean-js": "yarn clean",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
|
|
"size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"cli/${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
|
|
"tslint": "tslint --config ../ts/tslint.json --project ."
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "3.5.3",
|
|
"debug": "^4.3.4",
|
|
"execa": "4.0.0",
|
|
"fs-extra": "9.1.0",
|
|
"lodash": "^4.17.21",
|
|
"plist": "3.1.0",
|
|
"semver": "7.3.5",
|
|
"which": "2.0.2",
|
|
"win-version-info": "5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/data-context": "0.0.0-development",
|
|
"@packages/ts": "0.0.0-development",
|
|
"@packages/types": "0.0.0-development",
|
|
"chai": "3.5.0",
|
|
"chai-as-promised": "7.1.1",
|
|
"mocha": "3.5.3",
|
|
"mock-fs": "5.4.0",
|
|
"sinon": "^10.0.0",
|
|
"sinon-chai": "3.4.0",
|
|
"typescript": "~5.4.5"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"types": "index.ts",
|
|
"nx": {
|
|
"implicitDependencies": [
|
|
"@packages/graphql"
|
|
]
|
|
}
|
|
}
|