-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
46
{
"name": "cypress-duration-metrics",
"version": "1.1.1",
"description": "Measure duration of commands and different stages of cypress lifecycle.",
"main": "./commonjs/plugin.js",
"exports": {
"./plugin": "./commonjs/plugin.js",
"./support": "./commonjs/support.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"develop": "tsc --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/archfz/cypress-duration-metrics.git"
},
"keywords": [
"duration",
"timings",
"commands",
"performance",
"measurement",
"metrics",
"total"
],
"author": "Fodor Zoltan",
"license": "MIT",
"bugs": {
"url": "https://github.com/archfz/cypress-duration-metrics/issues"
},
"homepage": "https://github.com/archfz/cypress-duration-metrics#readme",
"peerDependencies": {
"cypress": ">=10.0.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"cypress": ">=10.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"chalk": "^4.1.2"
}
}