{
  "name": "parley",
  "version": "4.0.0",
  "description": "Practical, lightweight flow control for Node.js.  Supports `await`, callbacks and promises.",
  "main": "lib/parley.js",
  "scripts": {
    "custom-tests": "mocha test/*.test.js",
    "lint": "eslint . --max-warnings=0 --ignore-pattern 'test/' && echo '✔  Your code looks good.'",
    "bench": "NODE_ENV=production mocha test/*.benchmark.js",
    "bench-win": "mocha test/*.benchmark.js",
    "test": "npm run lint && npm run custom-tests && npm run bench"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/mikermcneil/parley.git"
  },
  "keywords": [
    "flowcontrol",
    "await",
    "async/await",
    "async",
    "promise",
    "callback",
    "deferred"
  ],
  "author": "Mike McNeil",
  "license": "MIT",
  "dependencies": {
    "@sailshq/lodash": "^3.10.2",
    "bluebird": "3.2.1",
    "flaverr": "^1.5.1"
  },
  "devDependencies": {
    "benchmark": "2.1.2",
    "eslint": "4.19.1",
    "mocha": "6.1.3"
  },
  "engines": {
    "node": ">=8"
  }
}
