-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "cypress-ct-html",
"version": "1.1.0",
"description": "Cypress Component Testing for plain HTML/CSS/JS and Web Components",
"license": "MIT",
"scripts": {
"build": "bun run build:mount && bun run build:definition",
"build:mount": "tsc --project tsconfig.mount.json",
"build:definition": "tsc --project tsconfig.definition.json",
"dev": "cypress open --component",
"test": "cypress run --component"
},
"exports": {
"node": "./dist/definition.js",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"cypress",
"testing",
"html",
"webcomponents",
"component",
"cypress-ct",
"cypress-ct-html",
"test"
],
"dependencies": {
"@cypress/mount-utils": "^4.0.0"
},
"devDependencies": {
"cypress": "^13.0.0",
"typescript": "^5.1.6",
"vite": "^5.3.5"
},
"peerDependencies": {
"cypress": ">=10.6.0"
},
"author": {
"name": "Axel Karlsson",
"aka": "klovaaxel"
},
"repository": "https://github.com/klovaaxeel/cypress-html"
}