-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 1.83 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
{
"name": "@nasa-gcn/architect-functions-search",
"description": "Architect functions for OpenSearch",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "github:nasa-gcn/architect-functions-search"
},
"license": "Apache-2.0",
"contributors": [
{
"name": "Leo Singer",
"email": "[email protected]"
}
],
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"prepare:husky": "husky",
"prepare:tsc": "tsc",
"prepare": "run-p prepare:*"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@architect/functions": ">=5.3.4",
"@aws-sdk/credential-provider-node": "^3.188.0",
"@opensearch-project/opensearch": "^2.2.1",
"memoizee": "^0.4.15"
},
"devDependencies": {
"@nasa-gcn/eslint-config-gitignore": "^0.0.2",
"@tsconfig/node14": "^14.1.2",
"@types/memoizee": "^0.4.8",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.5.3"
},
"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"
}
},
"lint-staged": {
"*.(json|md|ts)": "prettier --write",
"*.ts": "eslint"
}
}