forked from Azure/functions-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
{
"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.2.14",
"@types/express": "^4.17.9",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^8.0.4",
"@types/node": "^12.6.8",
"@types/q": "^1.5.2",
"chai": "^4.2.0",
"express": "^4.17.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-node": "^9.0.0"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@azure/storage-blob": "^10.4.0",
"@types/glob": "^7.1.3",
"@types/rimraf": "^3.0.0",
"@types/xml2js": "^0.4.5",
"azure-actions-appservice-rest": "^1.3.3",
"azure-actions-utility": "^1.0.3",
"azure-actions-webclient": "^1.1.0",
"core-util-is": "^1.0.3",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"ignore": "^5.1.8",
"rimraf": "^3.0.2",
"typescript": "^3.9.7",
"xml2js": "^0.4.23"
}
}