{
  "name": "compose-tiny",
  "version": "1.1.3",
  "description": "A very tiny compose function.",
  "main": "dist/index.js",
  "umd:main": "dist/index.umd.js",
  "module": "dist/index.m.js",
  "source": "index.js",
  "types": "compose-tiny.d.ts",
  "license": "MIT",
  "files": [
    "index.js",
    "compose-tiny.d.ts",
    "dist/"
  ],
  "author": {
    "name": "Andrew Lisowski",
    "email": "lisowski54@gmail.com"
  },
  "scripts": {
    "test": "jest",
    "lint": "xo",
    "build": "microbundle",
    "dev": "microbundle watch",
    "benchmark": "node benchmark",
    "check-bundle": "bundlewatch",
    "release": "github-semantic-version --bump --changelog --push --publish"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/hipstersmoothie/compose-tiny.git"
  },
  "devDependencies": {
    "benchmark": "^2.1.4",
    "bundlewatch": "^0.2.1",
    "chain-function": "^1.0.1",
    "cli-table2": "^0.2.0",
    "compose-funcs": "^1.0.0",
    "compose-function": "^3.0.3",
    "composing": "^1.0.1",
    "fj-compose": "^1.1.0",
    "github-semantic-version": "^7.6.0",
    "husky": "^1.0.1",
    "jest": "^23.6.0",
    "just-compose": "^1.1.0",
    "lint-staged": "^7.3.0",
    "logdown": "^3.2.7",
    "microbundle": "^0.6.0",
    "ora": "^3.0.0",
    "prettier": "^1.14.3",
    "squad": "^3.0.0",
    "xo": "^0.23.0"
  },
  "xo": {
    "env": [
      "jest"
    ],
    "extends": [
      "prettier"
    ],
    "plugins": [
      "prettier"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,css,md}": [
      "prettier --write",
      "git add"
    ]
  },
  "prettier": {
    "singleQuote": true
  },
  "jest": {
    "coverageDirectory": "./coverage/",
    "collectCoverage": true
  },
  "gsv": {
    "majorLabel": "major",
    "minorLabel": "minor",
    "patchLabel": "patch",
    "internalLabel": "internal",
    "addReleasedLabelOnSuccess": "released"
  },
  "bundlewatch": {
    "files": [
      {
        "path": "index.js",
        "maxSize": "150B"
      }
    ]
  }
}
