-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "functionapp",
"version": "1.0.0",
"description": "Deploy to Azure Functions",
"main": "lib/main.js",
"scripts": {
"start": "node lib/main.js",
"build": "tsc --project tsconfig.prod.json",
"test": "mocha",
"test-file": "mocha",
"coverage": "c8 -r lcov --exclude \"**/*.spec.ts\" npm run test",
"coverage-report": "c8 report --reporter=json"
},
"author": {
"name": "Hanzhang Zeng",
"email": "Hanzhang.Zeng@microsoft.com"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.14",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^24.0.0",
"@types/q": "^1.5.8",
"@types/uuid": "^9.0.8",
"c8": "^10.1.2",
"chai": "^4.2.0",
"express": "^4.22.1",
"jest": "^29.7.0",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"tsx": "^4.21.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@azure/arm-storage": "^19.1.0",
"@azure/identity": "4.13.0",
"@azure/msal-node": "2.10.0",
"@azure/storage-blob": "^12.31.0",
"@types/glob": "^8.1.0",
"@types/xml2js": "^0.4.5",
"azure-actions-appservice-rest": "^1.3.35",
"azure-actions-utility": "^1.0.3",
"azure-actions-webclient": "^1.1.1",
"brace-expansion": "^2.0.2",
"core-util-is": "^1.0.3",
"fs-extra": "^11.2.0",
"glob": "^12.0.0",
"ignore": "^5.3.1",
"rimraf": "^6.1.0",
"typescript": "^5.4.3",
"uuid": "^13.0.0",
"xml2js": "^0.6.2"
},
"overrides": {
"undici": "^6.23.0",
"xml2js": "^0.6.2",
"shelljs": "^0.8.5",
"lodash": "^4.17.2",
"diff": "^8.0.3",
"qs": "^6.14.2",
"string_decoder": "^1.3.0"
}
}