{
  "name": "object-translate",
  "version": "1.0.1",
  "description": "Easily turn objects into other objects.",
  "main": "cjs/index.js",
  "browser": "dist/objectTranslate.js",
  "module": "es/index.js",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "jsxnext:main": "es/index.js",
  "files": [
    "dist",
    "cjs",
    "es",
    "src"
  ],
  "engines": {
    "node": ">=4.0.0"
  },
  "scripts": {
    "prepublish": "npm run build",
    "precommit": "npm run lint:test",
    "prepush": "npm run lint:test",
    "release": "release-it",
    "recommend-bump": "conventional-recommended-bump -p angular",
    "changelog": "standard-changelog",
    "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
    "lint": "npm run lint:eslint",
    "lint:eslint": "eslint src/*.js",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "clear && jest --watch --coverage",
    "lint:test": "npm run lint && npm run test:coverage",
    "build": "npm run lint:test && npm run build:cjs && npm run build:es && npm run build:umd",
    "build:watch": "clear && rimraf cjs && cross-env BABEL_ENV=cjs babel -w src --out-dir cjs",
    "build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
    "build:cjs": "rimraf cjs && cross-env BABEL_ENV=cjs babel src --out-dir cjs",
    "build:umd": "rimraf dist && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c",
    "benchmark:console": "node __benchmarks__/report-console",
    "benchmark:report": "node __benchmarks__/report-json",
    "cm": "git-cz"
  },
  "keywords": [],
  "author": "Danielo Rodriguez Rivero (rdanielo@gmail.com)",
  "license": "MIT",
  "repository": "danielo515/object-translate",
  "devDependencies": {
    "babel-cli": "^6.18.0",
    "babel-core": "^6.17.0",
    "babel-plugin-add-module-exports": "^0.2.1",
    "babel-preset-es2015": "^6.16.0",
    "benchmarked": "^2.0.0",
    "benchr": "^4.3.0",
    "commitizen": "^2.9.6",
    "conventional-recommended-bump": "^1.0.0",
    "coveralls": "^3.0.0",
    "cross-env": "^5.1.3",
    "cz-conventional-changelog": "^2.0.0",
    "eslint": "^4.19.1",
    "eslint-config-devine": "^1.6.1",
    "eslint-plugin-babel": "^4.0.0",
    "husky": "^0.14.3",
    "jest": "^21.1.0",
    "release-it": "^5.0.0",
    "rimraf": "^2.5.4",
    "rollup": "^0.51.0",
    "rollup-plugin-babel": "^3.0.2",
    "rollup-plugin-commonjs": "^8.2.1",
    "rollup-plugin-filesize": "^1.4.2",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-uglify": "^3.0.0",
    "standard-changelog": "^1.0.1"
  },
  "dependencies": {
    "object-path": "^0.11.3",
    "traverse": "^0.6.6"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
