Files
cypress/packages/errors/package.json
Bill Glesias eed699eb6d chore: update lerna to 8.1.8 from 6.6.2 (#30436)
* fix sync script with updateds npm-packlist

* chore: update lerna from 6.6.2 to 8.1.8 and ran lerna repair

* chore: pin typescript to ~5.4.5 to avoid importsNotUsedAsValues that was removed in 5.5 and edit workflows and scripts to correctly scope learna packages on v8 snapshot tests [run ci]

* fix indentation in comments

* remove console.log reference to print current package directory in sync exported npm with cli script
2024-10-22 14:46:46 -04:00

49 lines
1.4 KiB
JSON

{
"name": "@packages/errors",
"version": "0.0.0-development",
"description": "Error definitions and utilities for Cypress",
"main": "index.js",
"browser": "src/index.ts",
"scripts": {
"build": "../../scripts/run-if-ci.sh tsc || echo 'type errors'",
"build-prod": "tsc",
"check-ts": "tsc --noEmit",
"clean": "rimraf ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
"clean-deps": "rimraf node_modules",
"comparison": "node -r @packages/ts/register test/support/error-comparison-tool.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"test": "yarn test-unit",
"test-electron": "HTML_IMAGE_CONVERSION=1 xvfb-maybe electron --no-sandbox ./node_modules/.bin/_mocha",
"pretest-unit": "yarn clean",
"test-unit": "mocha"
},
"dependencies": {
"ansi_up": "5.0.0",
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"@types/chai": "4.2.15",
"@types/mocha": "8.2.2",
"@types/node": "18.17.5",
"@types/pngjs": "^6.0.1",
"ansi-styles": "^5",
"chai": "4.2.0",
"globby": "^11.1.0",
"is-ci": "^3.0.1",
"mocha": "7.0.1",
"pngjs": "^6.0.0",
"rimraf": "5.0.10",
"sinon": "7.5.0",
"terminal-banner": "^1.1.0",
"xvfb-maybe": "^0.2.1"
},
"files": [
"src",
"dist"
],
"types": "src/index.ts",
"nx": {}
}