-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 3.35 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
92
93
{
"name": "elasticsearch-assets",
"displayName": "Elasticsearch Assets",
"version": "4.0.6",
"private": true,
"description": "bundle of processors for teraslice",
"homepage": "https://github.com/terascope/elasticsearch-assets#readme",
"bugs": {
"url": "https://github.com/terascope/elasticsearch-assets/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terascope/elasticsearch-assets.git"
},
"license": "MIT",
"author": "Terascope, LLC <[email protected]>",
"type": "module",
"workspaces": [
"packages/*",
"asset"
],
"scripts": {
"asset:build": "yarn && yarn run build",
"asset:post-build": "./scripts/copy-links.sh",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"bump": "ts-scripts bump",
"bump-asset": "ts-scripts bump-asset",
"docker:limit": "./scripts/docker-limit-check.sh",
"docker:listImages": "ts-scripts images list",
"docker:saveImages": "ts-scripts images save",
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"publish:changed": "./scripts/publish.sh",
"setup": "yarn && yarn build --force",
"test": "TEST_ELASTICSEARCH='true' ts-scripts test asset --",
"test:all": "TEST_ELASTICSEARCH='true' ts-scripts test",
"test:debug": "TEST_ELASTICSEARCH='true' ts-scripts test --debug asset --",
"test:elasticsearch6": "TEST_ELASTICSEARCH='true' ts-scripts test asset --",
"test:elasticsearch7": "TEST_ELASTICSEARCH='true' ELASTICSEARCH_VERSION='7.9.3' ts-scripts test asset --",
"test:elasticsearch8": "TEST_ELASTICSEARCH='true' ELASTICSEARCH_VERSION='8.1.2' ts-scripts test asset --",
"test:opensearch1": "TEST_OPENSEARCH='true' ts-scripts test asset --",
"test:opensearch2": "TEST_OPENSEARCH='true' OPENSEARCH_VERSION='2.8.0' ts-scripts test asset --",
"test:watch": "ts-scripts test --watch asset --"
},
"devDependencies": {
"@terascope/data-types": "~1.7.1",
"@terascope/elasticsearch-api": "~4.7.1",
"@terascope/elasticsearch-asset-apis": "~1.0.5",
"@terascope/eslint-config": "~1.1.4",
"@terascope/job-components": "~1.9.1",
"@terascope/scripts": "~1.9.0",
"@terascope/teraslice-state-storage": "~1.7.1",
"@terascope/types": "~1.4.1",
"@types/bluebird": "~3.5.42",
"@types/got": "~9.6.12",
"@types/jest": "~29.5.14",
"@types/node": "~22.10.6",
"elasticsearch-store": "~1.7.2",
"eslint": "~9.18.0",
"jest": "~29.7.0",
"jest-extended": "~4.0.2",
"moment": "~2.30.1",
"nock": "~13.5.6",
"node-notifier": "~10.0.1",
"teraslice-test-harness": "~1.3.1",
"ts-jest": "~29.2.5",
"typescript": "~5.2.2"
},
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.19"
},
"terascope": {
"root": true,
"testSuite": "search",
"tests": {
"suites": {
"unit": [],
"search": []
}
},
"docker": {
"registries": [
"terascope/teraslice"
]
},
"npm": {
"registry": "https://registry.npmjs.org/"
}
},
"packageManager": "[email protected]"
}