package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "util.promisify",
  3. "version": "1.1.1",
  4. "description": "Polyfill/shim for util.promisify in node versions < v8",
  5. "main": "index.js",
  6. "dependencies": {
  7. "call-bind": "^1.0.0",
  8. "define-properties": "^1.1.3",
  9. "for-each": "^0.3.3",
  10. "has-symbols": "^1.0.1",
  11. "object.getownpropertydescriptors": "^2.1.1"
  12. },
  13. "devDependencies": {
  14. "@es-shims/api": "^2.1.2",
  15. "@ljharb/eslint-config": "^17.3.0",
  16. "aud": "^1.1.3",
  17. "auto-changelog": "^2.2.1",
  18. "eslint": "^7.17.0",
  19. "nyc": "^10.3.2",
  20. "safe-publish-latest": "^1.1.4",
  21. "tape": "^5.1.1"
  22. },
  23. "scripts": {
  24. "prepublish": "safe-publish-latest",
  25. "lint": "eslint .",
  26. "postlint": "es-shim-api --bound",
  27. "pretest": "npm run lint",
  28. "tests-only": "nyc tape 'test/**/*.js'",
  29. "test": "npm run tests-only",
  30. "posttest": "aud --production",
  31. "version": "auto-changelog && git add CHANGELOG.md",
  32. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git+https://github.com/ljharb/util.promisify.git"
  37. },
  38. "keywords": [
  39. "promisify",
  40. "promise",
  41. "util",
  42. "polyfill",
  43. "shim",
  44. "util.promisify"
  45. ],
  46. "author": "Jordan Harband <ljharb@gmail.com>",
  47. "funding": {
  48. "url": "https://github.com/sponsors/ljharb"
  49. },
  50. "license": "MIT",
  51. "bugs": {
  52. "url": "https://github.com/ljharb/util.promisify/issues"
  53. },
  54. "homepage": "https://github.com/ljharb/util.promisify#readme",
  55. "auto-changelog": {
  56. "output": "CHANGELOG.md",
  57. "template": "keepachangelog",
  58. "unreleased": false,
  59. "commitLimit": false,
  60. "backfillLimit": false,
  61. "hideCredit": true
  62. }
  63. }