{
  "name": "mappet",
  "version": "4.3.1",
  "description": "Lightweight, composable mappers for object transformations",
  "main": "./lib/mappet.js",
  "typings": "./lib/mappet.d.ts",
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc -w",
    "test": "jest",
    "doc": "typedoc --out doc src/mappet.ts",
    "clean": "rm -rf doc lib test",
    "lint": "eslint src --ext ts",
    "format": "prettier --write src/*.ts",
    "prepublishOnly": "npm test && npm run lint && npm run build"
  },
  "jest": {
    "testEnvironment": "node",
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MichalZalecki/mappet.git"
  },
  "author": "Michal Zalecki <michal@michalzalecki.com>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/MichalZalecki/mappet/issues"
  },
  "homepage": "https://github.com/MichalZalecki/mappet#readme",
  "devDependencies": {
    "@types/jest": "^24.0.13",
    "@types/lodash": "^4.14.132",
    "@typescript-eslint/eslint-plugin": "^1.10.2",
    "@typescript-eslint/parser": "^1.10.2",
    "eslint": "^5.16.0",
    "eslint-config-prettier": "^5.0.0",
    "eslint-plugin-prettier": "^3.1.0",
    "eslint-plugin-react": "^7.13.0",
    "jest": "^24.8.0",
    "moment": "^2.24.0",
    "prettier": "^1.18.2",
    "ts-jest": "^24.0.2",
    "typedoc": "^0.14.2",
    "typescript": "^3.4.5"
  },
  "files": [
    "lib"
  ],
  "dependencies": {
    "lodash": "^4.17.11"
  },
  "keywords": [
    "normalization",
    "normalize",
    "normalizr",
    "transformation",
    "object",
    "mapper",
    "nested"
  ]
}
