forked from Azure/webapps-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1013 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
{
"name": "webapps-deploy",
"version": "2.0.0",
"description": "Deploy web apps and containerized web apps to Azure",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/webapps-deploy.git"
},
"keywords": [
"action",
"webapp",
"container"
],
"author": "Sumiran Aggarwal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/webapps-deploy/issues"
},
"homepage": "https://github.com/Azure/webapps-deploy#readme",
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.1.7",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"actions-secret-parser": "^1.0.3",
"azure-actions-appservice-rest": "^1.3.3",
"azure-actions-utility": "^1.0.3",
"azure-actions-webclient": "^1.1.0"
}
}