package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "util.promisify",
  3. "version": "1.1.2",
  4. "description": "Polyfill/shim for util.promisify in node versions < v8",
  5. "main": "index.js",
  6. "scripts": {
  7. "prepack": "npmignore --auto --commentLines=autogenerated",
  8. "prepublishOnly": "safe-publish-latest",
  9. "prepublish": "not-in-publish || npm run prepublishOnly",
  10. "lint": "eslint --ext=js,mjs.",
  11. "postlint": "es-shim-api --bound",
  12. "pretest": "npm run lint",
  13. "tests-only": "nyc tape 'test/**/*.js'",
  14. "test": "npm run tests-only",
  15. "posttest": "aud --production",
  16. "version": "auto-changelog && git add CHANGELOG.md",
  17. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/ljharb/util.promisify.git"
  22. },
  23. "keywords": [
  24. "promisify",
  25. "promise",
  26. "util",
  27. "polyfill",
  28. "shim",
  29. "util.promisify"
  30. ],
  31. "author": "Jordan Harband <ljharb@gmail.com>",
  32. "funding": {
  33. "url": "https://github.com/sponsors/ljharb"
  34. },
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/ljharb/util.promisify/issues"
  38. },
  39. "homepage": "https://github.com/ljharb/util.promisify#readme",
  40. "dependencies": {
  41. "call-bind": "^1.0.2",
  42. "define-properties": "^1.2.0",
  43. "for-each": "^0.3.3",
  44. "has-proto": "^1.0.1",
  45. "has-symbols": "^1.0.3",
  46. "object.getownpropertydescriptors": "^2.1.6",
  47. "safe-array-concat": "^1.0.0"
  48. },
  49. "devDependencies": {
  50. "@es-shims/api": "^2.3.1",
  51. "@ljharb/eslint-config": "^21.0.1",
  52. "aud": "^2.0.2",
  53. "auto-changelog": "^2.4.0",
  54. "eslint": "=8.8.0",
  55. "in-publish": "^2.0.1",
  56. "npmignore": "^0.3.0",
  57. "nyc": "^10.3.2",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.6.3"
  60. },
  61. "auto-changelog": {
  62. "output": "CHANGELOG.md",
  63. "template": "keepachangelog",
  64. "unreleased": false,
  65. "commitLimit": false,
  66. "backfillLimit": false,
  67. "hideCredit": true
  68. },
  69. "publishConfig": {
  70. "ignore": [
  71. ".github/workflows"
  72. ]
  73. }
  74. }