mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-26 00:50:41 -05:00
689b2b26cd
* chore(deps): update dependency electron to v36.8.1 * bump node version * update workflow files + publish-binary script * bump base-internal images * remove current node version from additional test * bump circleci cache * allow node_version env var * Update .circleci/workflows.yml * index on renovate/electron-36.x:95d10b1d53Merge branch 'develop' into renovate/electron-36.x * index on renovate/electron-36.x:95d10b1d53Merge branch 'develop' into renovate/electron-36.x * index on renovate/electron-36.x:95d10b1d53Merge branch 'develop' into renovate/electron-36.x * bump types/node * update some node versions * update integrity check and electron instrcutions * correctly call net.family with net family type * Revert "correctly call net.family with net family type" This reverts commit505ff949a8. * update location of note types * more clearly type frame * fix type issues in agent.ts file * fix agent call * replace proxyquire in webpack-dev-server package * add changelog --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io> Co-authored-by: cypress-bot[bot] <+cypress-bot[bot]@users.noreply.github.com>
72 lines
1.9 KiB
JSON
72 lines
1.9 KiB
JSON
{
|
|
"name": "@cypress/schematic",
|
|
"version": "0.0.0-development",
|
|
"description": "Official Cypress schematic for the Angular CLI",
|
|
"main": "./src",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"build:watch": "tsc -p tsconfig.build.json --watch",
|
|
"lint": "eslint",
|
|
"test": "vitest run --no-file-parallelism"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^3.3.1",
|
|
"rxjs": "~7.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/architect": "^0.2001.6",
|
|
"@angular-devkit/core": "^20.1.6",
|
|
"@angular-devkit/schematics": "^20.1.6",
|
|
"@angular-devkit/schematics-cli": "^20.1.6",
|
|
"@angular/cli": "^20.1.6",
|
|
"@schematics/angular": "^20.1.6",
|
|
"@types/chai-enzyme": "0.6.13",
|
|
"@types/mocha": "8.0.3",
|
|
"@types/node": "^22.18.0",
|
|
"eslint": "^9.31.0",
|
|
"typescript": "~5.4.5",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/cli": ">=18.0.0",
|
|
"@angular/core": ">=18.0.0"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/cypress-schematic#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fcypress-schematics&template=1-bug-report.md&title=",
|
|
"keywords": [
|
|
"schematics",
|
|
"cypress",
|
|
"e2e",
|
|
"testing",
|
|
"angular",
|
|
"automation"
|
|
],
|
|
"lint-staged": {
|
|
"**/*.{js,jsx,ts,tsx,json}": "eslint --fix"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"builders": "./src/builders/builders.json",
|
|
"ng-add": {
|
|
"save": "devDependencies"
|
|
},
|
|
"nx": {
|
|
"targets": {
|
|
"build": {
|
|
"outputs": [
|
|
"{projectRoot}/src/**/*.js",
|
|
"{projectRoot}/src/**/*.d.ts",
|
|
"{projectRoot}/src/**/*.js.map"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"schematics": "./src/schematics/collection.json"
|
|
}
|