mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-27 02:14:36 -05:00
92e428a357
* chore: add type linting + compilation checks to runner package * empty commit * A bunch of tslint fixes * wow it is building * Fix issue with CT not mounting correctly with comments within it * Fix net-stubbing.ct.ts failures * Fix tslint: disable comment * move target into compilerOptions * fix tslint disable comment * update proxy-logging to undo changes * standardize the tslint:disable comments * fix comment * fix the banner content not displaying and write a test for this situation * fix ct reference * put target to es2020 * actually set the property with replaced title * Update packages/reporter/src/hooks/hook-model.ts Co-authored-by: Ryan Manuel <ryanm@cypress.io> * Fix eslint/tslint settings for system-tests with vue 3 * bump CI cache * update types/react resolution * add return * lint fix * tslint disable for empty blocks * exclude dist files from ts linting * update to exclude all dist folder * exclude dist file * change to await * fix line numbers of stack trace with linting updating vue file --------- Co-authored-by: Ryan Manuel <ryanm@cypress.io>
31 lines
781 B
JSON
31 lines
781 B
JSON
{
|
|
"name": "@packages/icons",
|
|
"version": "0.0.0-development",
|
|
"description": "Cypress Icons",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "ts-node ./scripts/build.ts && ts-node ./scripts/ico.ts",
|
|
"check-ts": "tsc --noEmit && yarn -s tslint",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
|
|
"test": "yarn test-unit",
|
|
"test-unit": "NODE_ENV=test mocha -r @packages/ts/register test/*.ts",
|
|
"tslint": "tslint --config ../ts/tslint.json --project ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^8.0.3",
|
|
"@types/to-ico": "^1.1.1",
|
|
"chai": "^4.2.0",
|
|
"fs-extra": "9.1.0",
|
|
"mocha": "^8.1.3",
|
|
"to-ico": "^1.1.5"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"license": "MIT",
|
|
"nx": {}
|
|
}
|