-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "webhook",
"description": "elastic.io webhook component",
"homepage": "https://elastic.io",
"author": {
"name": "elastic.io GmbH",
"email": "info@elastic.io",
"url": "https://www.elastic.io"
},
"keywords": [
"elasticio",
"elasticio-component",
"ipaas",
"integration",
"api"
],
"scripts": {
"lint": "eslint --ext .ts --quiet --fix",
"audit": "better-npm-audit audit --level high --production",
"pretest": "eslint --ext .ts --quiet --fix && find src spec -name \"*.js\" -type f -delete && rm -f verifyCredentials.js",
"test": "LOG_OUTPUT_MODE='short' node --import tsx --test ./spec/*/*test.ts",
"posttest": "tsc"
},
"engines": {
"node": "22.x"
},
"license": "Apache License 2.0",
"dependencies": {
"elasticio-sailor-nodejs": "2.7.7"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"@types/node": "22.18.0",
"better-npm-audit": "3.7.3",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"eslint": "8.49.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"tsx": "4.19.2",
"typescript": "5.7.3"
}
}