{
  "name": "promise-callbacks",
  "version": "3.8.2",
  "description": "Utilities to help convert a callback-using codebase to promises.",
  "engines": {
    "node": ">=6.9.0"
  },
  "main": "./dist/index.js",
  "scripts": {
    "build": "rollup -c",
    "ci": "npm run lint && npm test",
    "ci:commitlint": "commitlint-jenkins --pr-only",
    "example": "node ./example/app.js",
    "lint": "eslint .",
    "prepublishOnly": "npm run build && if [ \"$CI\" = '' ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
    "pretest": "npm run build",
    "semantic-release": "semantic-release",
    "test": "jest --env jsdom && jest --env node"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "callbacks",
    "promises",
    "async",
    "await",
    "es2017",
    "es8"
  ],
  "author": "Jeff Wear <jeff@mixmax.com> (https://mixmax.com)",
  "contributors": [
    "Eli Skeggs <eli@mixmax.com> (https://eliskeggs.com)"
  ],
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.9.0",
    "@babel/plugin-transform-runtime": "^7.9.0",
    "@babel/preset-env": "^7.9.5",
    "@commitlint/cli": "^8.3.5",
    "@commitlint/config-conventional": "^8.3.4",
    "@mixmaxhq/commitlint-jenkins": "^1.4.4",
    "@mixmaxhq/git-hooks": "^1.1.0",
    "@mixmaxhq/prettier-config": "^1.0.0",
    "@mixmaxhq/semantic-release-config": "^2.0.0",
    "cz-conventional-changelog": "^3.1.0",
    "eslint": "^6.8.0",
    "eslint-config-mixmax": "^4.10.0",
    "express": "^4.17.1",
    "jest": "^25.2.7",
    "prettier": "^2.0.4",
    "rollup": "^2.6.0",
    "rollup-plugin-babel": "^4.4.0",
    "semantic-release": "^17.0.4"
  },
  "dependencies": {
    "@babel/runtime": "^7.9.2",
    "object.getownpropertydescriptors": "2.1.0"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://github.com/mixmaxhq/promise-callbacks.git"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    },
    "manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release": {
    "extends": "@mixmaxhq/semantic-release-config"
  },
  "publishConfig": {
    "access": "public"
  }
}
