{
  "name": "putil-promisify",
  "description": "Simple and lightweight utility for transforming callback functions to Promises",
  "version": "1.10.1",
  "author": "Panates Ltd.",
  "contributors": [
    "Eray Hanoglu <e.hanoglu@panates.com>"
  ],
  "license": "MIT",
  "repository": "panates/putil-promisify",
  "main": "lib/promisify.js",
  "keywords": [
    "javascript",
    "async",
    "promise",
    "promisify"
  ],
  "devDependencies": {
    "eslint": "^8.45.0",
    "eslint-config-google": "^0.14.0",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0"
  },
  "engines": {
    "node": ">= 14.0"
  },
  "directories": {
    "lib": "./lib"
  },
  "files": [
    "LICENSE",
    "README.md",
    "lib/"
  ],
  "nyc": {
    "temp-dir": "./coverage/.nyc_output"
  },
  "scripts": {
    "test": "mocha --require ./test/support/env --reporter spec --bail --check-leaks --testarg1=8081 test/",
    "cover": "nyc --reporter html --reporter text npm run test",
    "travis-cover": "nyc --reporter lcovonly npm run test"
  }
}
