-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.33 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
{
"name": "@guestbell/fast-ftp",
"version": "1.0.9",
"description": "Supercharge your ftp deployments",
"main": "dist/lib.js",
"module": "dist/lib.es.js",
"types": "dist/lib.d.ts",
"bin": {
"fast-ftp": "dist/index.js"
},
"private": false,
"scripts": {
"test": "jest",
"api-docs": "typedoc --plugin typedoc-plugin-markdown --out api-docs src/lib.ts",
"build": "rollup -c",
"version:patch": "npm version patch",
"push:git": "git push --tags origin main --quiet",
"commit:build": "git add . && git commit -m \"Deploy commit\" --quiet && npm run push:git || true",
"create:patch": "npm run version:patch && npm run push:git",
"deploy": "npm run api-docs && npm run build && npm run commit:build && npm publish --access=public && npm run create:patch",
"real-test": "ts-node src/index.ts --local-root=exampleData/default --remote-root=/test --concurrency=32",
"benchmark": "ts-node src/benchmark"
},
"keywords": [
"ftp",
"static",
"fast"
],
"repository": {
"type": "git",
"url": "git+https://github.com/guestbell/fast-ftp.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/babel__core": "^7.20.0",
"@types/ftp": "^0.3.33",
"@types/minimist": "^1.2.2",
"@types/promise-ftp": "^1.3.4",
"babel-loader": "^8.3.0",
"basic-ftp": "^5.0.2",
"ftp-deploy": "^2.4.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"promise-ftp": "^1.3.5",
"rollup": "^3.20.4",
"rollup-plugin-add-shebang": "^0.3.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typedoc": "^0.24.4",
"typedoc-plugin-markdown": "^3.15.1",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"ftp": "^0.3.10",
"minimist": "^1.2.8",
"winston": "^3.8.2"
},
"author": "Peter Kottas",
"license": "MIT"
}