-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "file-stackshare-artifact",
"version": "1.0.0",
"description": "Uploads a file using Send Anywhere API.",
"main": "build/index.js",
"scripts": {
"start:dev": "nodemon",
"build": "rimraf ./dist && rimraf ./build && tsc",
"package": "ncc build --source-map",
"start": "npm run build && npm run package && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Warhammer4000/FileStack-Share-Artifact.git"
},
"keywords": [
"SendAnywhere",
"FileShare",
"GitHub",
"Actions"
],
"author": "Tanimul Haque Khan, Kakan Ghosh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Warhammer4000/FileStack-Share-Artifact/issues"
},
"homepage": "https://github.com/Warhammer4000/FileStack-Share-Artifact#readme",
"devDependencies": {
"@types/node": "^14.11.9",
"@zeit/ncc": "^0.22.3",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.65",
"typescript": "^4.0.3"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"axios": "^0.20.0",
"filestack-js": "^3.18.0",
"form-data": "^3.0.0"
}
}