{
  "name": "dashp",
  "description": "Utilities for monadic promises.",
  "license": "GPL-3.0",
  "author": "Christo <christo@cryptodrunks.net>",
  "homepage": "https://github.com/critocrito/dashp#readme",
  "repository": "https://github.com/critocrito/dashp.git",
  "version": "0.11.0",
  "main": "dist/index.js",
  "module": "lib/index.js",
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "benchmarks": "for i in benchmarks/*.suite.js; do babel-node $i; done",
    "benchmarks:all": "babel-node benchmarks/all.suite.js",
    "benchmarks:checkTypes": "babel-node benchmarks/check-types.suite.js",
    "benchmarks:curry": "babel-node benchmarks/curry.suite.js",
    "build": "yarn lint && yarn test && yarn compile",
    "clean": "rimraf dist",
    "precompile": "yarn clean",
    "compile": "babel --verbose -s -D -d dist src",
    "compile:watch": "yarn compile -w",
    "fix": "yarn lint --fix",
    "lint": "eslint test src benchmarks",
    "prepublishOnly": "yarn build",
    "prerelease": "yarn build",
    "release": "standard-version -i Changelog.md -m \"chore(release): bumped to version %s\" --sign",
    "test": "ava",
    "test:coverage": "nyc ava",
    "test:watch": "yarn test -w"
  },
  "devDependencies": {
    "@babel/cli": "^7.5.0",
    "@babel/core": "^7.5.4",
    "@babel/node": "^7.5.0",
    "@babel/preset-env": "^7.5.4",
    "@babel/register": "^7.4.4",
    "@build-chores/commitlint": "0.9.0",
    "@build-chores/staged": "0.9.0",
    "ava": "^2.1.0",
    "ava-fast-check": "^1.1.1",
    "babel-eslint": "^10.0.2",
    "babel-plugin-istanbul": "^5.1.4",
    "benchmark": "^2.1.4",
    "bluebird": "^3.5.1",
    "coveralls": "^3.0.0",
    "eslint": "^6.0.1",
    "eslint-config-airbnb-base": "^13.2.0",
    "eslint-config-prettier": "^6.0.0",
    "eslint-plugin-ava": "^7.1.0",
    "eslint-plugin-filenames": "^1.3.2",
    "eslint-plugin-import": "^2.18.0",
    "eslint-plugin-lodash-fp": "^2.2.0-a1",
    "eslint-plugin-prettier": "^3.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-simple-import-sort": "^4.0.0",
    "fast-check": "^1.15.1",
    "husky": "^2.0.0",
    "in-range": "^2.0.0",
    "lodash": "^4.17.5",
    "nyc": "^14.1.1",
    "prettier": "^1.18.2",
    "prettier-package-json": "^2.1.0",
    "rimraf": "^2.6.2",
    "sinon": "^7.2.7",
    "standard-version": "^6.0.1",
    "time-span": "^3.0.0"
  },
  "keywords": [
    "async",
    "functional",
    "monad",
    "monadic",
    "monads",
    "promise",
    "promises",
    "promises-aplus",
    "static-land"
  ],
  "engines": {
    "node": ">=8"
  },
  "ava": {
    "require": [
      "@babel/register"
    ]
  }
}
