-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.53 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
{
"name": "kafka-asset-bundle",
"displayName": "Kafka Asset Bundle",
"version": "5.4.1",
"private": true,
"description": "A bundle of Kafka operations and processors for Teraslice",
"repository": "[email protected]:terascope/kafka-assets.git",
"license": "MIT",
"author": "Terascope, LLC <[email protected]>",
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"asset"
]
},
"scripts": {
"asset:build": "yarn && yarn --cwd ./asset build",
"build": "tsc --build",
"build:watch": "yarn 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": "ts-scripts test asset --",
"test:all": "ts-scripts test",
"test:debug": "ts-scripts test --debug asset --",
"test:watch": "ts-scripts test --watch asset --"
},
"dependencies": {
"node-gyp": "11.0.0"
},
"devDependencies": {
"@terascope/eslint-config": "~1.1.4",
"@terascope/job-components": "~1.9.1",
"@terascope/scripts": "~1.9.0",
"@types/fs-extra": "~11.0.4",
"@types/jest": "~29.5.14",
"@types/node": "~22.10.5",
"@types/semver": "~7.5.8",
"@types/uuid": "~10.0.0",
"bunyan": "~1.8.15",
"eslint": "~9.18.0",
"fs-extra": "~11.3.0",
"jest": "~29.7.0",
"jest-extended": "~4.0.2",
"semver": "~7.6.3",
"terafoundation_kafka_connector": "~1.2.1",
"teraslice-test-harness": "~1.3.1",
"ts-jest": "~29.2.5",
"typescript": "~5.7.3",
"uuid": "~11.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.22.22"
},
"terascope": {
"root": true,
"testSuite": "stream",
"tests": {
"suites": {
"unit": [],
"stream": [
"kafka",
"zookeeper"
]
}
},
"docker": {
"registries": [
"terascope/teraslice"
]
},
"npm": {
"registry": "https://registry.npmjs.org/"
}
}
}