mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-22 06:59:30 -06:00
* 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
24 lines
509 B
JSON
24 lines
509 B
JSON
{
|
|
"name": "@packages/resolve-dist",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build-prod": "tsc --project .",
|
|
"check-ts": "tsc --noEmit",
|
|
"clean": "rimraf 'lib/**/*.js'",
|
|
"clean-deps": "rimraf node_modules",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
|
|
},
|
|
"dependencies": {
|
|
"fs-extra": "9.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@packages/ts": "0.0.0-development"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"types": "./lib/index.ts"
|
|
}
|