-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
91 lines (91 loc) · 2.2 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@nasa-gcn/architect-plugin-search",
"description": "Architect plugin for OpenSearch / ElasticSearch",
"version": "1.5.0",
"repository": {
"type": "git",
"url": "github:nasa-gcn/architect-plugin-search"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Leo Singer",
"email": "leo.p.singer@nasa.gov"
}
],
"type": "module",
"files": [
"index.js"
],
"scripts": {
"prepare:husky": "husky",
"prepare:esbuild": "esbuild index.ts --bundle --packages=external --outfile=index.js --platform=node --format=esm --tree-shaking=true",
"prepare": "run-p prepare:*",
"test": "node --test"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@nasa-gcn/architect-functions-search": "^1.0.0",
"@opensearch-project/opensearch": "^2.2.0",
"dockerode": "^4.0.0",
"env-paths": "^3.0.0",
"lodash": "^4.17.21",
"make-fetch-happen": "^14.0.0",
"rimraf": "^4.1.2",
"tar": "^7.4.1",
"unzip-stream": "^0.3.1",
"wait-port": "^1.0.4"
},
"devDependencies": {
"@nasa-gcn/eslint-config-gitignore": "^0.0.2",
"@tsconfig/node14": "^14.1.2",
"@types/dockerode": "^3.3.23",
"@types/lodash": "^4.14.202",
"@types/make-fetch-happen": "^10.0.1",
"@types/node": "^22.2.0",
"@types/tar": "^6.1.4",
"@types/unzip-stream": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"esbuild": "^0.24.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^9.3.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"env": {
"es2019": true,
"node": true
},
"extends": [
"eslint:recommended",
"@nasa-gcn/eslint-config-gitignore",
"prettier"
],
"overrides": [
{
"files": "*.ts",
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
}
],
"parserOptions": {
"sourceType": "module"
}
}
}