-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "sftp-upload",
"version": "1.0.0",
"description": "A GitHub Action for uploading files via SFTP.",
"main": "dist/index.js",
"scripts": {
"test": "jest ./unit/*",
"predist": "tsc",
"dist": "ncc build build/index.js --license licenses.txt --minify",
"lint": "eslint --fix src/* tests/unit/*",
"check-lint": "eslint src/* tests/unit/*",
"perf": "jest performance --runInBand --coverageThreshold='{\"global\":{\"statements\":\"0\"}}'",
"clean": "rimraf dist coverage build *.log"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dylan700/sftp-upload-action.git"
},
"author": "Dylan700",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dylan700/sftp-upload-action/issues"
},
"homepage": "https://github.com/Dylan700/sftp-upload-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"minimatch": "^6.1.5",
"p-limit": "3.1.0",
"ssh2-sftp-client": "^9.0.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@types/ssh2-sftp-client": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"jest": "^29.3.1",
"kelonio": "^0.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}