Files
cypress/packages/net-stubbing/package.json
T
Bill Glesias f14a11aecf chore: update eslint from version 7 to version 8 (#29355)
* chore: (for eslint-plugin-dev only is breaking) update eslint-plugin dev minimum to eslint 7. Remove support for coffeescript and reconfigured required peer deps

* correctly configure eslint-plugin-json-format for the monorepo and run linting on all json files (previously was not running)

* properly support no duplicate imports
2024-04-26 14:42:33 -04:00

30 lines
794 B
JSON

{
"name": "@packages/net-stubbing",
"version": "0.0.0-development",
"private": true,
"main": "./lib/server",
"scripts": {
"build-prod": "tsc --project .",
"check-ts": "tsc --noEmit",
"clean-deps": "rimraf node_modules",
"lint": "eslint --ext .ts,.json, .",
"test": "CYPRESS_INTERNAL_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json --exit test/unit/*"
},
"dependencies": {
"@types/mime-types": "2.1.0",
"is-html": "^2.0.0",
"istextorbinary": "6.0.0",
"lodash": "^4.17.15",
"mime-types": "2.1.27",
"minimatch": "^3.0.4",
"throttle": "^1.0.3"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "7.1.2"
},
"files": [
"lib"
]
}