-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 954 Bytes
/
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
{
"name": "cypress-web-vitals",
"version": "4.1.2",
"description": "A Web Vitals command for cypress",
"author": "Craig Morten <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cmorten/cypress-web-vitals"
},
"main": "commands.js",
"types": "commands.d.ts",
"scripts": {
"ci": "yarn lint && yarn test",
"lint": "eslint ./src ./examples",
"lint:fix": "yarn lint --fix",
"test": "jest ./src --coverage"
},
"devDependencies": {
"cypress": "^13.6.2",
"cypress-real-events": "^1.11.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1"
},
"peerDependencies": {
"cypress": "^4.x || ^5.x || ^6.x || ^7.x || ^8.x || ^9.x || ^10.x || ^11.x || ^12.x || ^13.x",
"cypress-real-events": "^1.x"
}
}