-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.08 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
34
35
36
{
"name": "cypress-monocart-coverage",
"version": "1.0.1",
"description": "Cypress Coverage Plugin for Monocart Coverage Reports",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./support": "./lib/support.js",
"./package.json": "./package.json"
},
"scripts": {
"test": "npm run test:e2e && npm run test:component && npm run merge",
"test:e2e": "npx cypress run --browser edge",
"test:component": "npx cypress run --component --browser edge",
"merge": "node ./merge-coverage.js",
"patch": "npm run test && sf publish patch -r"
},
"files": [
"lib"
],
"license": "MIT",
"dependencies": {
"monocart-coverage-reports": "^2.7.1"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"cypress": "^13.6.6",
"eslint": "^8.57.0",
"eslint-config-plus": "^1.0.6",
"eslint-plugin-html": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webpack": "^5.90.3"
}
}