forked from nerdoza/action-simple-file-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 980 Bytes
/
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
{
"name": "action-simple-file-upload",
"version": "1.1.3",
"author": "Zachary Cardoza",
"description": "GitHub Action that performs a simple file transfer using FTP",
"license": "MIT",
"private": true,
"main": "lib/main.js",
"scripts": {
"test": "ts-mocha test/*.ts",
"prebuild": "tsc",
"build": "ncc build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bayssmekanique/action-simple-file-transfer.git"
},
"keywords": [
"actions",
"node",
"ftp",
"transfer"
],
"dependencies": {
"@actions/core": "^1.2.3",
"ftp": "^0.3.10"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/ftp": "^0.3.31",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@zeit/ncc": "^0.22.1",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-mocha": "^7.0.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.3"
}
}