-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "cy-verify-downloads",
"version": "0.2.6",
"description": "Cypress custom command to wait and verify that file has been downloaded",
"files": [
"src/index.d.ts",
"index.js",
"is-file-exist.plugin.js"
],
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"cy:open": "npx cypress open",
"cy:run": "npx cypress run",
"start": "npx serve site -l 8039",
"test": "npm start & npm run cy:run --browser chrome --headless",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elaichenkov/cy-verify-downloads.git"
},
"keywords": [
"cypress",
"plugins",
"command",
"wait",
"download"
],
"author": "Yevhen Laichenkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/elaichenkov/cy-verify-downloads/issues"
},
"homepage": "https://github.com/elaichenkov/cy-verify-downloads#readme",
"devDependencies": {
"cypress": "^13.0.0",
"release-it": "^17.0.0",
"serve": "^14.0.1"
}
}