{
  "name": "build-function",
  "version": "0.1.0",
  "description": "The way to describe and build simple functions using JSON",
  "keywords": [
    "build",
    "function",
    "json"
  ],
  "main": "dist/build.cjs.js",
  "module": "dist/build.es.js",
  "browser": "dist/build.umd.js",
  "types": "types/index.d.ts",
  "typings": "types/index.d.ts",
  "bundlib": {
    "name": "buildFunc",
    "min": "browser",
    "globals": {
      "object-hash": "objectHash"
    }
  },
  "scripts": {
    "clean": "rm -rf dist types coverage node_modules/.cache/bundlib node_modules/.cache/jest",
    "lint": "tslint src/**/*.ts",
    "dev": "bundlib -dw",
    "build": "bundlib -d",
    "test": "jest --color -w 3",
    "watch": "npm test -- --watch-all",
    "preversion": "npm run clean && npm run lint && npm test && npm run build"
  },
  "dependencies": {
    "object-hash": "^1.3.1"
  },
  "devDependencies": {
    "@types/jest": "^24.0.17",
    "@types/node": "^12.7.4",
    "@types/object-hash": "^1.3.0",
    "bundlib": "^0.12.5",
    "chokidar": "^3.0.2",
    "eslint": "^6.3.0",
    "husky": "^3.0.5",
    "jest": "^24.8.0",
    "ts-jest": "^24.0.2",
    "tslint": "^5.20.0",
    "typescript": "^3.6.2"
  },
  "files": [
    "dist",
    "types"
  ],
  "directories": {
    "test": "test"
  },
  "author": {
    "name": "Manuel Fernandez",
    "email": "manferlo81@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manferlo81/build-function.git"
  },
  "bugs": {
    "url": "https://github.com/manferlo81/build-function/issues"
  },
  "homepage": "https://github.com/manferlo81/build-function#readme",
  "license": "MIT"
}
