-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.58 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@azure/functions-e2e-tests",
"version": "1.0.0",
"description": "Microsoft Azure Functions NodeJS E2E Tests",
"keywords": [
"azure",
"azure-functions",
"serverless",
"typescript"
],
"author": "Microsoft",
"license": "MIT",
"homepage": "https://github.com/Azure/azure-functions-nodejs-e2e-tests",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-functions-nodejs-e2e-tests.git"
},
"bugs": {
"url": "https://github.com/Azure/azure-functions-nodejs-e2e-tests/issues"
},
"main": "./dist/azure-functions.js",
"types": "types/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf out",
"format": "prettier . --write",
"lint": "eslint . --fix",
"watch": "tsc -w",
"createCombinedApps": "node out/createCombinedApps.js",
"testOldConfig": "npm run testV3OldConfig && npm run testV4OldConfig",
"testV3OldConfig": "node out/index.js --model v3 --oldConfig",
"testV4OldConfig": "node out/index.js --model v4 --oldConfig",
"testServiceBus": "npm run testV3ServiceBus && npm run testV4ServiceBus",
"testV3ServiceBus": "node out/index.js --model v3 --only serviceBus.test.js",
"testV4ServiceBus": "node out/index.js --model v4 --only serviceBus.test.js",
"testAllExceptServiceBus": "npm run testV3AllExceptServiceBus && npm run testV4AllExceptServiceBus",
"testV3AllExceptServiceBus": "node out/index.js --model v3 --exclude serviceBus.test.js",
"testV4AllExceptServiceBus": "node out/index.js --model v4 --exclude serviceBus.test.js"
},
"dependencies": {
"@azure/arm-cosmosdb": "^15.4.0",
"@azure/arm-eventhub": "^5.1.0",
"@azure/arm-keyvault": "^3.1.0",
"@azure/arm-resources": "^5.2.0",
"@azure/arm-servicebus": "^6.1.0",
"@azure/arm-sql": "^10.0.0",
"@azure/arm-storage": "^18.1.0",
"@azure/cosmos": "^4.5.0",
"@azure/data-tables": "^13.2.2",
"@azure/event-hubs": "^5.10.0",
"@azure/identity": "^3.4.2",
"@azure/keyvault-keys": "^4.8.0",
"@azure/service-bus": "^7.9.0",
"@azure/storage-blob": "^12.14.0",
"@azure/storage-queue": "^12.13.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.5",
"@types/minimist": "^1.2.2",
"@types/mocha": "^10.0.2",
"@types/mssql": "^9.1.0",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.13",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"agentkeepalive": "^4.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.3.2",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"find-process": "^1.4.7",
"globby": "^11.0.0",
"iconv-lite": "^0.6.3",
"minimist": "^1.2.8",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi-reporters": "^1.5.1",
"mssql": "^10.0.2",
"node-fetch": "2.6.7",
"p-retry": "^4.0.0",
"prettier": "^2.4.1",
"rimraf": "^5.0.0",
"semver": "^7.5.2",
"ts-loader": "^9.3.1",
"ts-node": "^3.3.0",
"typescript": "^4.5.5",
"uuid": "^9.0.1"
}
}