-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cypress-lit",
"description": "Cypress component testing for web components written in Lit or natively",
"version": "0.0.8",
"author": "Simon Reilly",
"devDependencies": {
"@cypress/mount-utils": ">=4.0.0",
"@types/node": "^18.17.1",
"cypress": "^13.13.0",
"embedme": "^1.22.1",
"husky": "^8.0.3",
"lit": "^2.7.6",
"playwright-webkit": "1.48.1",
"prettier": "^3.0.0",
"release-it": "^16.1.3",
"syncpack": "^10.7.3",
"typescript": "^5.1.6",
"vite": "^4.4.7"
},
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./dist/cypress-lit.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/cypress-lit.js"
}
}
},
"files": [
"dist",
"types"
],
"homepage": "https://github.com/simonireilly/cypress-lit",
"keywords": [
"components",
"cypress",
"lit",
"testing",
"web components"
],
"license": "MIT",
"main": "dist/cypress-lit.js",
"peerDependencies": {
"cypress": ">=10.6.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": "simonireilly/cypress-lit",
"scripts": {
"build": "tsc && vite build",
"docs": "embedme ./README.md",
"fmt": "syncpack format",
"lint": "prettier './{src,cypress,templates}/**/*.{js,ts}' --write",
"prepare": "husky install",
"pub:alpha": "release-it --preRelease=alpha --npm.tag=alpha",
"pub:dry-run": "pnpm publish --tag next --dry-run --no-git-checks",
"pub:patch": "release-it patch",
"test": "cypress run --component",
"test:webkit": "cypress run --component --browser webkit"
},
"types": "./types/index.d.ts"
}