-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "eio-code-component",
"description": "elastic.io code component",
"engines": {
"node": "24.x"
},
"scripts": {
"audit": "better-npm-audit audit --level high --production",
"docker:build": "docker build -t elasticio/code-component:$(git log -n1 --format=%H) .",
"docker:push": "docker push elasticio/code-component:$(git log -n1 --format=%H)",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "NODE_ENV=test LOG_LEVEL=trace mocha ./spec/** --timeout 50000"
},
"repository": {
"type": "git",
"url": "git@github.com:elasticio/code-component.git"
},
"author": "elastic.io GmbH",
"license": "BSD-2-Clause",
"dependencies": {
"co": "4.6.0",
"co-request": "1.0.0",
"strong-soap": "5.0.9",
"elasticio-sailor-nodejs": "2.7.8",
"json-bigint": "1.0.0",
"lodash": "4.18.1",
"nodemailer": "8.0.7"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"better-npm-audit": "3.11.0",
"chai": "6.2.2",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"mocha": "11.7.5",
"sinon": "22.0.0"
},
"overrides": {
"underscore": "^1.13.8",
"lodash": "4.18.1",
"axios": "^1.16.0",
"qs": "^6.15.1",
"form-data": "^4.0.5",
"tough-cookie": "^6.0.1",
"serialize-javascript": "^7.0.5",
"diff": "^9.0.0",
"jws": "^4.0.1",
"@xmldom/xmldom": "^0.9.10"
}
}