-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1019 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1019 Bytes
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
{
"name": "cypress-downloadfile",
"version": "1.2.4",
"description": "Cypress custom command to download files",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"copy:types": "babel types --out-dir lib --copy-files",
"build:all": "npm run build && npm run copy:types",
"test": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xvier/cypress-downloadfile.git"
},
"keywords": [
"Cypress",
"downloading"
],
"author": "Xviuda",
"license": "MIT",
"bugs": {
"url": "https://github.com/Xvier/cypress-downloadfile/issues"
},
"homepage": "https://github.com/Xvier/cypress-downloadfile#readme",
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"cypress": "^13.11.0",
"prettier": "^3.3.2"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"fs-extra": "^11.2.0"
}
}