mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-05 14:09:46 -06:00
* chore: enforce 'no-implicit-dependencies' on tslint * downgrade chalk version for errors package
56 lines
2.0 KiB
JSON
56 lines
2.0 KiB
JSON
{
|
|
"name": "@packages/config",
|
|
"version": "0.0.0-development",
|
|
"description": "Config contains the configuration types and validation function used in the cypress electron application.",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"browser": "src/browser.ts",
|
|
"scripts": {
|
|
"build-prod": "tsc || echo 'built, with errors'",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"clean": "rimraf --glob ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/!**__fixtures__**/**/*.js || echo 'cleaned'",
|
|
"clean-deps": "rimraf node_modules",
|
|
"lint": "eslint --ext .js,.ts,.json, .",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "yarn test-unit --inspect-brk=5566",
|
|
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json -r @packages/ts/register 'test/**/*.spec.ts' --exit --timeout 5000",
|
|
"test:clean": "find ./test/__fixtures__ -depth -name 'output.*' -type f -exec rm {} \\;",
|
|
"tslint": "tslint --config ../ts/tslint.json --project ."
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.25.2",
|
|
"@babel/parser": "^7.25.3",
|
|
"@babel/plugin-syntax-typescript": "^7.24.7",
|
|
"@babel/plugin-transform-typescript": "^7.25.2",
|
|
"@babel/traverse": "^7.25.3",
|
|
"@babel/types": "^7.25.2",
|
|
"bluebird": "^3.7.2",
|
|
"check-more-types": "2.24.0",
|
|
"common-tags": "1.8.0",
|
|
"debug": "^4.3.4",
|
|
"dedent": "^0.7.0",
|
|
"fs-extra": "^9.1.0",
|
|
"lodash": "^4.17.21",
|
|
"prettier": "^2.8.8",
|
|
"recast": "0.20.4",
|
|
"return-deep-diff": "0.4.0",
|
|
"underscore.string": "^3.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/errors": "0.0.0-development",
|
|
"@packages/network": "0.0.0-development",
|
|
"@packages/root": "0.0.0-development",
|
|
"@packages/ts": "0.0.0-development",
|
|
"@packages/types": "0.0.0-development",
|
|
"@types/mocha": "9.1.0",
|
|
"babel-plugin-tester": "^10.1.0",
|
|
"chai": "4.2.0",
|
|
"mocha": "7.0.1"
|
|
},
|
|
"files": [
|
|
"src"
|
|
],
|
|
"types": "src/index.ts",
|
|
"nx": {}
|
|
}
|