Initial commit

This commit is contained in:
Microsoft GitHub User
2019-09-25 01:50:19 -07:00
committed by Sumiran Aggarwal
commit 691d3a0f33
371 changed files with 885461 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "login",
"version": "1.0.0",
"description": "Login Azure wraps the az login, allowing for Azure actions to log into Azure",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sumiran Aggarwal",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.7.11",
"typescript": "^3.6.3"
},
"dependencies": {
"@actions/core": "^1.1.3",
"@actions/exec": "^1.0.1",
"@actions/io": "^1.0.1",
"actions-secret-parser": "^1.0.1"
}
}