{ "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", "clean-deps": "rimraf node_modules", "clean": "rimraf --glob ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/!**__fixtures__**/**/*.js || echo 'cleaned'", "test": "yarn test-unit", "test:clean": "find ./test/__fixtures__ -depth -name 'output.*' -type f -exec rm {} \\;", "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", "lint": "eslint --ext .js,.ts,.json, ." }, "dependencies": { "@babel/core": "^7.22.9", "@babel/parser": "^7.22.7", "@babel/plugin-syntax-typescript": "^7.22.5", "@babel/plugin-transform-typescript": "^7.22.9", "@babel/traverse": "^7.22.8", "@babel/types": "^7.22.5", "check-more-types": "2.24.0", "common-tags": "1.8.0", "debug": "^4.3.4", "fs-extra": "^9.1.0", "lodash": "^4.17.21", "recast": "0.20.4", "return-deep-diff": "0.4.0" }, "files": [ "src" ], "types": "src/index.ts" }