Files
cypress/packages/config/package.json
2022-03-14 15:32:11 -05:00

35 lines
1.1 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/index.ts",
"scripts": {
"build-prod": "tsc || echo 'built, with errors'",
"check-ts": "tsc --noEmit",
"clean-deps": "rm -rf node_modules",
"clean": "rm -f ./src/*.js ./src/**/*.js ./src/**/**/*.js ./test/**/*.js || echo 'cleaned'",
"test": "yarn test-unit",
"test-debug": "yarn test-unit --inspect-brk=5566",
"test-unit": "mocha --configFile=../../mocha-reporter-config.json -r @packages/ts/register test/unit/**/*.spec.ts --exit"
},
"dependencies": {
"check-more-types": "2.24.0",
"common-tags": "1.8.0",
"debug": "^4.3.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@packages/root": "0.0.0-development",
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"chai": "4.2.0",
"mocha": "7.0.1"
},
"files": [
"src"
],
"types": "src/index.ts"
}