forked from Xvier/cypress-downloadfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 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
34
35
36
37
38
39
40
41
{
"name": "cypress-downloadfile",
"version": "1.2.3",
"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.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"cypress": "^9.6.0",
"prettier": "^2.6.2"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"fs-extra": "10.1.0"
}
}