package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "call-bind",
  3. "version": "1.0.7",
  4. "description": "Robustly `.call.bind()` a function",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./callBound": "./callBound.js",
  9. "./package.json": "./package.json"
  10. },
  11. "scripts": {
  12. "prepack": "npmignore --auto --commentLines=auto",
  13. "prepublish": "not-in-publish || npm run prepublishOnly",
  14. "prepublishOnly": "safe-publish-latest",
  15. "lint": "eslint --ext=.js,.mjs .",
  16. "postlint": "evalmd README.md",
  17. "pretest": "npm run lint",
  18. "tests-only": "nyc tape 'test/**/*.js'",
  19. "test": "npm run tests-only",
  20. "posttest": "aud --production",
  21. "version": "auto-changelog && git add CHANGELOG.md",
  22. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/ljharb/call-bind.git"
  27. },
  28. "keywords": [
  29. "javascript",
  30. "ecmascript",
  31. "es",
  32. "js",
  33. "callbind",
  34. "callbound",
  35. "call",
  36. "bind",
  37. "bound",
  38. "call-bind",
  39. "call-bound",
  40. "function",
  41. "es-abstract"
  42. ],
  43. "author": "Jordan Harband <ljharb@gmail.com>",
  44. "funding": {
  45. "url": "https://github.com/sponsors/ljharb"
  46. },
  47. "license": "MIT",
  48. "bugs": {
  49. "url": "https://github.com/ljharb/call-bind/issues"
  50. },
  51. "homepage": "https://github.com/ljharb/call-bind#readme",
  52. "devDependencies": {
  53. "@ljharb/eslint-config": "^21.1.0",
  54. "aud": "^2.0.4",
  55. "auto-changelog": "^2.4.0",
  56. "es-value-fixtures": "^1.4.2",
  57. "eslint": "=8.8.0",
  58. "evalmd": "^0.0.19",
  59. "for-each": "^0.3.3",
  60. "gopd": "^1.0.1",
  61. "has-strict-mode": "^1.0.1",
  62. "in-publish": "^2.0.1",
  63. "npmignore": "^0.3.1",
  64. "nyc": "^10.3.2",
  65. "object-inspect": "^1.13.1",
  66. "safe-publish-latest": "^2.0.0",
  67. "tape": "^5.7.4"
  68. },
  69. "dependencies": {
  70. "es-define-property": "^1.0.0",
  71. "es-errors": "^1.3.0",
  72. "function-bind": "^1.1.2",
  73. "get-intrinsic": "^1.2.4",
  74. "set-function-length": "^1.2.1"
  75. },
  76. "testling": {
  77. "files": "test/index.js"
  78. },
  79. "auto-changelog": {
  80. "output": "CHANGELOG.md",
  81. "template": "keepachangelog",
  82. "unreleased": false,
  83. "commitLimit": false,
  84. "backfillLimit": false,
  85. "hideCredit": true
  86. },
  87. "publishConfig": {
  88. "ignore": [
  89. ".github/workflows"
  90. ]
  91. },
  92. "engines": {
  93. "node": ">= 0.4"
  94. }
  95. }