forked from tibor19/static-website-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 878 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 878 Bytes
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
{
"name": "static-website-deploy",
"version": "1.0.0",
"description": "With this action, you can automate your workflow to deploy files to Azure Storage Account",
"main": "lib/index.js",
"scripts": {
"build": "ncc build index.js -C --out lib",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tibor19/static-website-deploy.git"
},
"author": {
"name": "Tiberiu Covaci",
"url": "https://github.com/tibor19"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tibor19/static-website-deploy/issues"
},
"homepage": "https://github.com/tibor19/static-website-deploy#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@azure/storage-blob": "^12.1.1",
"mime-types": "^2.1.26"
},
"devDependencies": {
"@zeit/ncc": "0.22.1"
}
}