-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "finally.js",
"displayName": "Finally.js",
"version": "1.0.1",
"description": "Finally.js is a Node.js tool for seamlessly deploying website files to an FTP server. It automates the process of collecting files from a specified directory and ensures secure authentication through environment variables. Ideal for developers looking to streamline their deployment process, Finally.js can be effortlessly integrated with GitHub Actions for automated deployments.",
"main": "./dist/finally.js",
"types": "./dist/types/finally.d.ts",
"exports": {
"import": "./dist/finally.js",
"require": "./dist/finally.js",
"types": "./dist/types/finally.d.ts"
},
"files": [
"dist"
],
"preferGlobal": true,
"bin": {
"finally": "./dist/bin/cli.js"
},
"repository": {
"url": "https://github.com/iamspdarsan/finally.js"
},
"bugs": {
"url": "https://github.com/iamspdarsan/finally.js/issues"
},
"homepage": "https://www.npmjs.com/package/finally.js",
"author": "DARSAN <hello@darsan.in>",
"maintainers": [
"DARSAN <hello@darsan.in>"
],
"license": "MIT",
"private": false,
"scripts": {
"dev": "cls && rimraf dist && tsc -p tscdev.json && ncp ./finally.c.json ./dist/finally.c.json",
"dr": "yarn dev && yarn rp",
"rp": "node ./dist/finally.js",
"test": "jest",
"build": "cls && rimraf dist && tsc -p tsconfig.json && ncp ./finally.c.json ./dist/finally.c.json",
"clean": "cls && rimraf dist",
"deploy": "yarn build && npm publish && git push"
},
"keywords": [
"ftp deployment",
"node.js deployment tool",
"automated website deployment",
"github actions integration",
"ftp server",
"secure authentication",
"ci/cd pipeline",
"web development",
"ftp upload",
"environment variables",
"node.js",
"website deployment",
"automated deployment",
"ftp automation",
"ftp tool",
"deploy website",
"file transfer",
"web hosting",
"ftp integration",
"ftp client"
],
"dependencies": {
"basic-ftp": "5.0.5",
"cli-progress": "3.12.0",
"commander": "12.1.0",
"glob": "11.0.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "latest",
"ncp": "latest",
"rimraf": "latest",
"ts-node": "latest",
"typescript": "latest"
}
}