-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.72 KB
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
{
"name": "@quasar/quasar-app-extension-testing-e2e-cypress",
"version": "6.2.1",
"license": "MIT",
"description": "A Quasar App Extension for Cypress e2e",
"contributors": [
"Paolo Caleffi",
"Daniel Thompson-Yvetot"
],
"repository": {
"type": "git",
"url": "https://github.com/quasarframework/quasar-testing"
},
"main": "dist/main.js",
"module": "dist/esm/main.js",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./ --fix",
"format": "prettier --write \"src/**/*.{js,ts,vue}\" \"*.{json,md}\" \"test/**/*.{js,ts,vue}\"",
"build": "rimraf dist cct-dev-server && tsc --declaration && tsc --project tsconfig.cct.json && tsc --project tsconfig.esm.json",
"build:local": "yarn install && yarn build && rimraf node_modules",
"deploy:alpha": "yarn build && yarn publish --tag alpha",
"deploy:beta": "yarn build && yarn publish --tag beta",
"deploy:latest": "yarn build && yarn publish --tag latest"
},
"publishConfig": {
"access": "public"
},
"typings": "dist/main.d.ts",
"engines": {
"node": "^30 || ^28 || ^26 || ^24 || ^22 || ^20 || ^18",
"npm": ">= 6.14.12",
"yarn": ">= 1.17.3"
},
"dependencies": {
"@cypress/code-coverage": "^3.14.7",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"nyc": "^17.1.0",
"start-server-and-test": "^2.1.2",
"vite-plugin-istanbul": "^7.2.0"
},
"devDependencies": {
"@types/lodash": "^4.17.20",
"cypress": "^15.7.0",
"eslint-plugin-cypress": "^3.6.0",
"rimraf": "^5.0.5"
},
"peerDependencies": {
"cypress": "^12.2.0 || ^13.2.0 || ^14.0.0 || ^15.0.0",
"eslint-plugin-cypress": ">=2.0.0"
},
"peerDependenciesMeta": {
"eslint-plugin-cypress": {
"optional": true
}
}
}