-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
54 lines (54 loc) · 1.5 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"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 -r ts-node/register tests/**/*.spec.ts",
"test-file": "mocha -r ts-node/register",
"coverage": "nyc -r lcov -e .ts -x \"**/*.spec.ts\" npm run test",
"coverage-report": "nyc report --reporter=json"
},
"author": {
"name": "Hanzhang Zeng",
"email": "[email protected]"
},
"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": "^20.11.30",
"@types/q": "^1.5.8",
"@types/uuid": "^9.0.8",
"chai": "^4.2.0",
"express": "^4.19.1",
"jest": "^29.7.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@azure/arm-storage": "^18.2.0",
"@azure/identity": "^4.0.1",
"@azure/storage-blob": "^12.17.0",
"@types/glob": "^8.1.0",
"@types/xml2js": "^0.4.5",
"azure-actions-appservice-rest": "^1.3.13",
"azure-actions-utility": "^1.0.3",
"azure-actions-webclient": "^1.1.1",
"core-util-is": "^1.0.3",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"ignore": "^5.3.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.3",
"xml2js": "^0.5.0",
"uuid": "^3.4.0"
}
}