UNPKG

cypress-ct-lit

Version:
90 lines (89 loc) 1.92 kB
{ "name": "cypress-ct-lit", "version": "1.0.0", "description": "Cypress Component Testing for Lit and Web Components", "type": "module", "keywords": [ "cypress", "testing", "lit", "lit-element", "LitElement", "component", "cypress-ct", "cypress-ct-lit", "component test" ], "types": "./dist/index.d.ts", "files": [ "dist" ], "exports": { ".": { "types": "./dist/index.d.ts", "node": "./dist/definition.js", "default": "./dist/index.bundle.js" } }, "scripts": { "build:mount": "wireit", "build:definition": "wireit", "bundle": "wireit", "build": "wireit" }, "wireit": { "build:definition": { "command": "tsc --project tsconfig.definition.json", "files": [ "tsconfig.definition.json", "src/definition.ts" ], "output": [ "dist/definition.{d.ts,js}" ] }, "build:mount": { "command": "tsc --project tsconfig.mount.json", "files": [ "tsconfig.mount.json", "src/index.ts" ], "output": [ "dist/index.{d.ts,js}" ] }, "bundle": { "dependencies": [ "build:mount" ], "files": [ "rollup.config.js" ], "command": "rollup -c", "output": [ "dist/index.bundle.js" ] }, "build": { "dependencies": [ "build:definition", "bundle" ] } }, "dependencies": {}, "devDependencies": { "@cypress/mount-utils": "^4.0.0" }, "peerDependencies": { "cypress": ">=10.6.0", "lit": "^2.0.0 || ^3.0.0" }, "author": { "name": "Diego Jesus Hernandez Gonzalez", "aka": "redfox-mx", "email": "hernandezdj98@outlook.com" }, "repository": "https://github.com/redfox-mx/cypress-lit", "homepage": "https://github.com/redfox-mx/cypress-lit/tree/develop/packages/cypress-ct-lit" }