-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 2.39 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
{
"name": "@corteks/mysql-data-generator",
"version": "1.1.1",
"author": "Corteks",
"keywords": [
"database",
"random",
"mysql",
"mariadb"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Corteks-team/mysql_data_generator.git"
},
"main": "lib/main.js",
"bin": {
"mysqldatagen": "bin/mysqldatagen"
},
"files": [
"bin",
"lib"
],
"engines": {
"node": ">= 12.16.2"
},
"dependencies": {
"@corteks/clify": "^0.2.1",
"@faker-js/faker": "^6.3.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.13.2",
"cli-progress": "^3.8.2",
"colors": "^1.4.0",
"fs-extra": "^9.0.1",
"jsonc-parser": "^2.3.1",
"knex": "^0.20.15",
"log4js": "^6.3.0",
"moment": "^2.29.0",
"mysql": "^2.18.1",
"random-js": "^2.1.0",
"uri-js": "^4.4.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/cli-progress": "^3.8.0",
"@types/fs-extra": "^8.1.1",
"@types/jest": "^25.2.3",
"@types/mysql": "^2.15.15",
"@types/node": "^13.13.21",
"@types/yargs": "^15.0.7",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"ts-jest": "^26.4.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"typescript-tslint-plugin": "^0.5.5"
},
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "nodemon --no-stdin",
"build": "tsc",
"prepublishOnly": "npm run build && npm run test",
"test": "jest",
"lint": "tslint -p tsconfig.json -c tslint.json"
},
"description": "This is a tool to easily fill a SQL database. \r It is able to analyse a schema and generate a `schema.json` which will be used to generate accurate data. It does its best to handle foreign keys. \r You can provide a `custom_schema.json` to customize `schema.json` during the analyse phase. This will allow you to override datatype for a column, force the use of a foreign key\r or specify a list of values.",
"bugs": {
"url": "https://github.com/Corteks-team/mysql_data_generator/issues"
},
"homepage": "https://github.com/Corteks-team/mysql_data_generator#readme",
"directories": {
"lib": "lib"
},
"packageManager": "[email protected]"
}