-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 882 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 882 Bytes
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
{
"name": "joomla-cypress",
"version": "2.0.0",
"description": "Helpers for using Cypress with Joomla for testing",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf node_modules tests/cypress.config.mjs tests/screenshots",
"test": "npx cypress run --config-file tests/cypress.config.mjs",
"open": "npx cypress open --config-file tests/cypress.config.mjs",
"cypress:install": "cypress install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joomla-projects/joomla-cypress.git"
},
"keywords": [
"Joomla",
"Cypress"
],
"author": "Joomla Project",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/joomla-projects/joomla-cypress/issues"
},
"homepage": "https://github.com/joomla-projects/joomla-cypress#readme",
"files": [
"src"
],
"dependencies": {
"cypress": ">=15.10.0",
"cypress-file-upload": "^5.0.8"
}
}