údržba
This commit is contained in:
14
CyLukTs/lukan/node_modules/cypress/vue/README.md
generated
vendored
Normal file
14
CyLukTs/lukan/node_modules/cypress/vue/README.md
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
# @cypress/vue
|
||||
|
||||
Mount Vue 3 components in the open source [Cypress.io](https://www.cypress.io/) test runner
|
||||
|
||||
> **Note:** This package is bundled with the `cypress` package and should not need to be installed separately. See the [Vue Component Testing Docs](https://docs.cypress.io/guides/component-testing/vue/overview) for mounting Vue components. Installing and importing `mount` from `@cypress/vue` should only be done for advanced use-cases.
|
||||
## Development
|
||||
|
||||
Run `yarn build` to compile and sync packages to the `cypress` cli package.
|
||||
|
||||
Run `yarn cy:open` to open Cypress component testing against real-world examples.
|
||||
|
||||
Run `yarn test` to execute headless Cypress tests.
|
||||
|
||||
## [Changelog](./CHANGELOG.md)
|
8582
CyLukTs/lukan/node_modules/cypress/vue/dist/cypress-vue.cjs.js
generated
vendored
Normal file
8582
CyLukTs/lukan/node_modules/cypress/vue/dist/cypress-vue.cjs.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
8560
CyLukTs/lukan/node_modules/cypress/vue/dist/cypress-vue.esm-bundler.js
generated
vendored
Normal file
8560
CyLukTs/lukan/node_modules/cypress/vue/dist/cypress-vue.esm-bundler.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1392
CyLukTs/lukan/node_modules/cypress/vue/dist/index.d.ts
generated
vendored
Normal file
1392
CyLukTs/lukan/node_modules/cypress/vue/dist/index.d.ts
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
85
CyLukTs/lukan/node_modules/cypress/vue/package.json
generated
vendored
Normal file
85
CyLukTs/lukan/node_modules/cypress/vue/package.json
generated
vendored
Normal file
@ -0,0 +1,85 @@
|
||||
{
|
||||
"name": "@cypress/vue",
|
||||
"version": "0.0.0-development",
|
||||
"description": "Browser-based Component Testing for Vue.js with Cypress.io ✌️🌲",
|
||||
"main": "dist/cypress-vue.cjs.js",
|
||||
"scripts": {
|
||||
"build-prod": "yarn build",
|
||||
"cy:open": "node ../../scripts/cypress.js open --component --project ${PWD}",
|
||||
"cy:run": "node ../../scripts/cypress.js run --component --project ${PWD}",
|
||||
"build": "rimraf dist && rollup -c rollup.config.mjs",
|
||||
"postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
|
||||
"typecheck": "yarn tsd && vue-tsc --noEmit",
|
||||
"check-ts": "yarn tsd && vue-tsc --noEmit",
|
||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.vue .",
|
||||
"test": "yarn cy:run",
|
||||
"tsd": "yarn build && yarn tsc -p test-tsd/tsconfig.tsd.json",
|
||||
"watch": "yarn build --watch --watch.exclude ./dist/**/*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@cypress/mount-utils": "0.0.0-development",
|
||||
"@vitejs/plugin-vue": "4.2.0",
|
||||
"@vue/compiler-sfc": "3.2.47",
|
||||
"@vue/test-utils": "2.3.2",
|
||||
"axios": "0.21.2",
|
||||
"cypress": "0.0.0-development",
|
||||
"debug": "^4.3.4",
|
||||
"globby": "^11.0.1",
|
||||
"tailwindcss": "1.1.4",
|
||||
"typescript": "^4.7.4",
|
||||
"vite": "4.3.2",
|
||||
"vue": "3.2.47",
|
||||
"vue-i18n": "9.0.0-rc.6",
|
||||
"vue-router": "^4.0.0",
|
||||
"vue-tsc": "^0.3.0",
|
||||
"vuex": "^4.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@cypress/webpack-dev-server": "*",
|
||||
"cypress": ">=7.0.0",
|
||||
"vue": ">=3.0.0"
|
||||
},
|
||||
"files": [
|
||||
"dist/**/*",
|
||||
"src/**/*.js"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
},
|
||||
"types": "dist/index.d.ts",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/cypress-io/cypress.git"
|
||||
},
|
||||
"homepage": "https://github.com/cypress-io/cypress/blob/develop/npm/vue/#readme",
|
||||
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
|
||||
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fvue&template=1-bug-report.md&title=",
|
||||
"keywords": [
|
||||
"cypress",
|
||||
"vue"
|
||||
],
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Jessica Sachs",
|
||||
"social": "@JessicaSachs"
|
||||
},
|
||||
{
|
||||
"name": "Amir Rustamzadeh",
|
||||
"social": "@amirrustam"
|
||||
},
|
||||
{
|
||||
"name": "Lachlan Miller",
|
||||
"social": "@Lachlan19900"
|
||||
}
|
||||
],
|
||||
"module": "dist/cypress-vue.esm-bundler.js",
|
||||
"peerDependenciesMeta": {
|
||||
"@cypress/webpack-dev-server": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user