LLM-test/test/sql/2-sql测试-1/mock/package.json

27 lines
676 B
JSON

{
"name": "sql-mock-data-generator",
"version": "1.0.0",
"description": "使用Mockjs为SQL表生成随机模拟数据",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js > output.txt",
"seed": "node src/index.js",
"dev": "nodemon src/index.js",
"generate": "node src/index.js --dry-run",
"init-db": "node scripts/init-database.js"
},
"dependencies": {
"mockjs": "^1.1.0",
"mysql2": "^3.9.7",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"keywords": ["mock", "database", "sql", "test-data"],
"author": "",
"license": "MIT"
}