-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
{
"name": "@flaaaps/easyupload",
"version": "0.2.1",
"description": "Easily upload folders to your server using SFTP",
"main": "dist/cli.js",
"scripts": {
"compile": "tsc",
"watch": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/cli.ts\""
},
"bin": {
"easyupload": "./bin/easyupload"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flaaaps/easyupload.git"
},
"keywords": [
"upload",
"sftp"
],
"author": "flaaaps",
"license": "MIT",
"bugs": {
"url": "https://github.com/flaaaps/easyupload/issues"
},
"homepage": "https://github.com/flaaaps/easyupload#readme",
"dependencies": {
"arg": "^5.0.1",
"esm": "^3.2.25",
"sftp-upload": "^1.0.3"
},
"devDependencies": {
"@types/node": "^15.6.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
}
}