ts-mockgen
Version:
Generate mock objects from TypeScript types using the TypeScript AST (ts-morph).
38 lines (37 loc) • 711 B
JSON
{
"name": "ts-mockgen",
"version": "0.0.14",
"description": "Generate mock objects from TypeScript types using the TypeScript AST (ts-morph).",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "vitest"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"mock",
"ts-morph",
"testing",
"ast",
"codegen"
],
"author": "George McCannon",
"license": "MIT",
"dependencies": {
"ts-morph": "^22.0.0",
"@types/node": "^20.0.0",
"typescript": "^5.4.0"
},
"devDependencies": {
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18"
},
"type": "module"
}