-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 771 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 771 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
{
"name": "simple-ftp-deploy",
"version": "1.0.6",
"description": "A node library that simplifies the usage of ftp-deploy package",
"license": "MIT",
"repository": "https://github.com/vkiss/simple-ftp-deploy",
"author": "Vinicius Kiss <contato@kiss.dev.br> (https://kiss.dev.br/)",
"bin": "./bin/simple-ftp-deploy.js",
"main": "./lib/index.js",
"scripts": {
"lint": "biome check . --write"
},
"files": [
"bin",
"lib"
],
"keywords": [
"ftp",
"deploy"
],
"bugs": {
"url": "https://github.com/vkiss/simple-ftp-deploy/issues"
},
"homepage": "https://github.com/vkiss/simple-ftp-deploy#readme",
"dependencies": {
"chalk": "^5.6.2",
"cosmiconfig": "^9.0.0",
"ftp-deploy": "^2.4.7"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4"
}
}