-
Notifications
You must be signed in to change notification settings - Fork 199
/
Copy pathpackage.json
41 lines (41 loc) · 1016 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": "3.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": "^29.5.12",
"@types/node": "^20.12.2",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.4.3"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^4.0.0",
"actions-secret-parser": "^1.0.4",
"azure-actions-appservice-rest": "^1.3.16",
"azure-actions-utility": "^1.0.3",
"azure-actions-webclient": "^1.1.1"
}
}