-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
{
"homepage": "https://elastic.io",
"author": {
"name": "elastic.io GmbH",
"email": "[email protected]",
"url": "https://www.elastic.io"
},
"keywords": [
"elasticio",
"elasticio-component",
"ipaas",
"integration",
"api"
],
"engines": {
"node": "18.x"
},
"scripts": {
"lint": "eslint --ext .ts --quiet --fix",
"pretest": "eslint --ext .ts --quiet --fix && find src spec spec-integration -name \"*.js\" -type f -delete && rm -f verifyCredentials.js",
"test": "mocha --require ts-node/register \"spec/**/*spec.ts\" --timeout 10000",
"posttest": "tsc",
"integration-test": "npm run pretest && mocha --require ts-node/register \"spec-integration/**/*spec.ts\" --timeout 500000"
},
"dependencies": {
"@elastic.io/component-commons-library": "3.1.5",
"axios": "0.27.2",
"elasticio-node": "0.0.9",
"elasticio-sailor-nodejs": "2.7.1",
"twitter-api-v2": "1.15.2"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"@types/mocha": "10.0.3",
"@types/node": "18.16.3",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"dotenv": "16.3.1",
"eslint": "8.52.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.0",
"mocha": "10.2.0",
"sinon": "17.0.0",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}