-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.28 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
{
"name": "@nextcloud/e2e-test-server",
"version": "0.5.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-libraries/nextcloud-e2e-test-server",
"bugs": {
"url": "https://github.com/nextcloud-libraries/nextcloud-e2e-test-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/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.mjs",
"require": "./dist/commands.cjs"
},
"./selectors": {
"types": "./dist/selectors/index.d.ts",
"import": "./dist/selectors.mjs",
"require": "./dist/selectors.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 --out dist/doc lib/commands lib/selectors/index.ts lib && touch dist/doc/.nojekyll",
"build:instrumented": "vite --mode instrumented build",
"cypress": "npm run cypress:e2e",
"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 test:node && npm run test:playwright",
"test:node": "ts-node --esm tests/*.spec.ts",
"test:playwright": "playwright test",
"pretest": "playwright install chromium --only-shell",
"watch": "vite --mode production build --watch"
},
"dependencies": {
"@nextcloud/paths": "^3.1.0",
"dockerode": "^5.0.0",
"fast-xml-parser": "^5.2.2",
"tar-stream": "^3.2.0",
"wait-on": "^9.0.1"
},
"devDependencies": {
"@nextcloud/vite-config": "^2.5.4",
"@playwright/test": "^1.61.1",
"@types/cypress": "^1.1.6",
"@types/dockerode": "^4.0.1",
"@types/tar-stream": "^3.1.4",
"@types/wait-on": "^5.3.4",
"cypress": "^15.18.0",
"cypress-vite": "^1.10.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typedoc": "^0.28.0",
"typescript": "^6.0.3",
"vite": "^7.3.5"
},
"engines": {
"node": "^22.0.0 || ^24.0.0 || >=26.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0"
},
"packageManager": [
{
"name": "npm",
"version": "^11.3.0"
}
]
},
"publishConfig": {
"access": "public"
}
}