{
  "name": "ts-automapper",
  "version": "2.0.5",
  "description": "Magic library for node to be able to transform object to another object",
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/esm/index.d.ts",
  "scripts": {
    "start": "nodemon",
    "prebuild": "rm -rf lib",
    "build": "yarn build:esm && yarn build:cjs",
    "build:esm": "tsc",
    "build:cjs": "tsc --module commonjs --outDir lib/cjs",
    "test": "jest",
    "coverage": "npx jest --collect-coverage",
    "ts": "tsc --version && tsc --noEmit -p tsconfig.json"
  },
  "author": "Anthony DI STEFANO",
  "homepage": "https://github.com/MADEiN83/ts-automapper",
  "bugs": {
    "url": "https://github.com/MADEiN83/ts-automapper/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MADEiN83/ts-automapper"
  },
  "license": "ISC",
  "keywords": [
    "typescript",
    "mapping",
    "map",
    "object",
    "javascript"
  ],
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/jest": "^29.5.4",
    "jest": "^29.7.0",
    "nodemon": "^3.0.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  },
  "files": [
    "lib"
  ]
}
