-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
70 lines (70 loc) · 1.91 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
{
"name": "@materializeinc/datagen",
"description": "Materialize Datagen CLI tool",
"version": "0.6.0",
"license": "Apache-2.0",
"type": "module",
"bin": {
"@MaterializeInc/datagen": "./dist/datagen.js",
"datagen": "./dist/datagen.js"
},
"author": {
"name": "Bobby Iliev",
"email": "[email protected]",
"url": "https://github.com/bobbyiliev"
},
"repository": {
"type": "git",
"url": "https://github.com/MaterializeInc/datagen.git"
},
"keywords": [
"datagen-cli",
"mz-datagen",
"kafka-datagen",
"materialize-datagen"
],
"files": [
"dist/**/*"
],
"scripts": {
"format": "prettier --write \"./**/*.{js,json}\"",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build && npm run test"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"@avro/types": "^1.0.25",
"@faker-js/faker": "^8.4.1",
"@kafkajs/confluent-schema-registry": "^3.3.0",
"@types/node": "^18.14.6",
"arg": "^5.0.2",
"avro-js": "^1.11.1",
"axios": "^1.3.4",
"cli-alerts": "^1.2.2",
"cli-handle-unhandled": "^1.1.1",
"cli-welcome": "^2.2.2",
"commander": "^9.4.1",
"crypto-random-string": "^5.0.0",
"dotenv": "^16.0.2",
"kafkajs": "^2.2.3",
"mysql2": "^3.9.2",
"node-sql-parser": "^4.6.1",
"pg": "^8.11.0"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/pg": "^8.10.2",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
}
}