-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 1.16 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
{
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.3",
"@types/minimatch": "^5.1.2",
"cy-verify-downloads": "^0.1.11",
"cypress": "^11.2.0",
"cypress-delete-downloads-folder": "^0.0.2",
"cypress-file-upload": "^5.0.8",
"cypress-if": "^1.10.2",
"cypress-iframe": "^1.0.1",
"cypress-real-events": "^1.7.2",
"fs.promises": "^0.1.2",
"globby": "11.0.4",
"junit-report-merger": "^4.0.0",
"minimatch": "^5.1.0",
"mocha": "^5.2.0",
"mochawesome": "^3.1.2",
"mochawesome-merge": "^1.0.7",
"mochawesome-report-generator": "^3.1.5",
"ts-node": "^10.9.1",
"ts-node-debug": "^1.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"scripts": {
"docker:build": "docker build -t mrbeam_plugin .\n",
"docker:run": "docker run --name mrbeam-plugin -d -p5002:5000 mrbeam_plugin",
"docker:build-and-run": "npm run docker:build && npm run docker:run",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome --reporter junit --config-file cypress.config.js",
"merge-reports": "jrm cypress/results/combined.xml 'cypress/results/*.xml' 'cypress/results/**/*.xml'"
}
}