forked from coralogix/coralogix-azure-serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "coralogix-azure-serverless",
"title": "Azure Functions for integration with Coralogix",
"version": "1.0.0",
"description": "Azure Functions Set for integration with Coralogix",
"homepage": "https://coralogix.com",
"license": "Apache-2.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
"build": "npm run lint && tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm-run-all --parallel start:host watch",
"test": "echo \"No tests yet...\"",
"prepack": "npx shx rm -rf dist node_modules && npm install && npm run build && npm prune --production --force",
"pack": "tar --exclude-from=.funcignore -a -c -f out.zip .",
"postpack": "npm install"
},
"author": {
"name": "Coralogix",
"email": "[email protected]",
"url": "https://coralogix.com"
},
"engines": {
"node": ">=18"
},
"contributors": [
{
"name": "Eldar Aliiev",
"email": "[email protected]",
"url": "https://github.com/EldarAliiev"
},
{
"name": "Michael Briggs",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/michael-a-briggs/"
}
],
"keywords": [
"coralogix",
"azure",
"javascript",
"function",
"EventHub",
"Metrics"
],
"repository": {
"type": "git",
"url": "https://github.com/coralogix/coralogix-azure-serverless.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/coralogix/coralogix-azure-serverless/issues"
},
"devDependencies": {
"@azure/functions": "^3.5.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": ">=5.48.2",
"@typescript-eslint/parser": ">=5.48.2",
"eslint": "^8.38.0",
"npm-run-all": ">=4.1.5",
"typescript": ">=4.9.4"
},
"files": [
"LICENSE",
"README.md"
]
}