{
  "name": "commodo-fields-object",
  "version": "1.0.6",
  "description": "A simple object field, used with the Commodo \"withFields\" higher order function.",
  "main": "dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/doitadrian/commodo-fields-object.git"
  },
  "author": "Adrian Smijulj",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/doitadrian/commodo-fields-object/issues"
  },
  "keywords": [
    "commodo",
    "fields",
    "object"
  ],
  "homepage": "https://github.com/doitadrian/commodo-fields-object#readme",
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.2.2",
    "@babel/plugin-transform-runtime": "^7.2.0",
    "@babel/preset-env": "^7.2.3",
    "all-contributors-cli": "^5.6.0",
    "babel-core": "^7.0.0-0",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^23.6.0",
    "babel-loader": "^8.0.4",
    "concurrently": "^4.1.0",
    "coveralls": "^3.0.2",
    "cz-conventional-changelog": "^2.1.0",
    "eslint": "^5.11.1",
    "husky": "^1.3.1",
    "jest": "^23.6.0",
    "jest-dom": "^3.0.0",
    "lint-staged": "^8.1.0",
    "prettier": "^1.15.3",
    "ramda": "^0.26.1",
    "semantic-release": "^15.13.12",
    "wait-on": "^3.2.0"
  },
  "dependencies": {
    "@commodo/fields": "^1.0.0"
  },
  "scripts": {
    "cz": "git-cz",
    "build": "babel src --out-dir dist --source-maps --ignore **/*.test.js",
    "test": "npm run test:jest:src",
    "test:jest:src": "npx jest --config ./scripts/jest/config.src.js",
    "test:jest:src:coverage": "npx jest --config ./scripts/jest/config.src.js --coverage --collectCoverageFrom=src/**/*.js",
    "test:jest:src:coverage:coveralls": "npm run test:jest:src:coverage && cat ./coverage/lcov.info | coveralls",
    "test:jest:dist": "npm run build && jest --config ./scripts/jest/config.dist.js --colors",
    "release": "npx semantic-release",
    "lint-staged": "lint-staged",
    "contributors:add": "all-contributors add",
    "contributors:generate": "all-contributors generate",
    "semantic-release": "semantic-release"
  },
  "pre-commit": [
    "lint-staged"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "**/*.js": [
      "prettier --write",
      "eslint --fix",
      "jest --config ./scripts/jest/config.src.js --findRelatedTests",
      "git add"
    ]
  }
}
