-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.43 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@nextcloud/e2e-test-server",
"version": "0.4.0",
"description": "Nextcloud e2e test server and utils for cypress and playwright",
"keywords": [
"nextcloud",
"docker",
"e2e",
"testing",
"cypress",
"playwright",
"selector",
"plugins",
"library"
],
"homepage": "https://github.com/nextcloud/nextcloud-e2e-test-server",
"bugs": {
"url": "https://github.com/nextcloud/nextcloud-e2e-test-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/nextcloud-e2e-test-server.git"
},
"license": "AGPL-3.0-or-later",
"author": "John Molakvoæ <skjnldsv@protonmail.com>",
"exports": {
"./commands": {
"types": "./dist/commands/index.d.ts",
"import": "./dist/commands/index.cjs",
"require": "./dist/commands/index.cjs"
},
"./selectors": {
"types": "./dist/selectors/index.d.ts",
"import": "./dist/selectors/index.cjs",
"require": "./dist/selectors/index.cjs"
},
"./docker": {
"types": "./dist/docker.d.ts",
"import": "./dist/docker.mjs",
"require": "./dist/docker.cjs"
},
"./cypress": {
"types": "./dist/cypress.d.ts",
"import": "./dist/cypress.mjs",
"require": "./dist/cypress.cjs"
},
"./playwright": {
"types": "./dist/playwright.d.ts",
"import": "./dist/playwright.mjs",
"require": "./dist/playwright.cjs"
},
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.cjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --tsconfig cypress/tsconfig.json --out dist/doc lib/commands lib/selectors lib && touch dist/doc/.nojekyll",
"build:instrumented": "vite --mode instrumented build",
"cypress": "npm run cypress:e2e && npm run cypress:component",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open",
"dev": "echo 'No dev build available, production only' && npm run build",
"start:nextcloud": "node playwright/start-nextcloud-server.mjs",
"test": "npm run build && playwright install chromium --only-shell && playwright test",
"watch": "vite --mode production build --watch"
},
"dependencies": {
"@nextcloud/paths": "^2.2.1",
"dockerode": "^4.0.2",
"fast-xml-parser": "^5.2.2",
"wait-on": "^9.0.1"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.39",
"@nextcloud/upload": "^1.1.1",
"@nextcloud/vite-config": "^2.5.1",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@playwright/test": "^1.50.1",
"@types/cypress": "^1.1.3",
"@types/dockerode": "^4.0.1",
"@vue/cli-service": "^5.0.8",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.7.2",
"nyc": "^17.0.0",
"rollup-plugin-istanbul": "^5.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.28.0",
"typescript": "^5.4.5",
"vite": "^7.1.9",
"vue": "^2.7.16"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^22.0.0"
},
"packageManager": [
{
"name": "npm",
"version": "^10.5.0"
}
]
},
"publishConfig": {
"access": "public"
}
}