a343a5167ec7695c87d1059c17e9a138934364303e416f11e1dc47098d43164374d8e7da0997d59af88603afd7a9439fdf34a6b744765ec7206f5c1d184ce6 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "string.prototype.trimend",
  3. "version": "1.0.9",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "contributors": [
  6. "Jordan Harband <ljharb@gmail.com>",
  7. "Khaled Al-Ansari <khaledelansari@gmail.com>"
  8. ],
  9. "funding": {
  10. "url": "https://github.com/sponsors/ljharb"
  11. },
  12. "description": "ES2019 spec-compliant String.prototype.trimEnd shim.",
  13. "license": "MIT",
  14. "main": "index.js",
  15. "scripts": {
  16. "prepack": "npmignore --auto --commentLines=autogenerated",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "prepublishOnly": "safe-publish-latest",
  19. "lint": "eslint --ext=js,mjs .",
  20. "postlint": "es-shim-api --bound",
  21. "pretest": "npm run lint",
  22. "test": "npm run tests-only",
  23. "posttest": "npx npm@'>= 10.2' audit --production",
  24. "tests-only": "nyc tape 'test/**/*.js'",
  25. "version": "auto-changelog && git add CHANGELOG.md",
  26. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/es-shims/String.prototype.trimEnd.git"
  31. },
  32. "keywords": [
  33. "es6",
  34. "es7",
  35. "es8",
  36. "javascript",
  37. "prototype",
  38. "polyfill",
  39. "utility",
  40. "trim",
  41. "trimLeft",
  42. "trimRight",
  43. "trimStart",
  44. "trimEnd",
  45. "tc39"
  46. ],
  47. "dependencies": {
  48. "call-bind": "^1.0.8",
  49. "call-bound": "^1.0.2",
  50. "define-properties": "^1.2.1",
  51. "es-object-atoms": "^1.0.0"
  52. },
  53. "devDependencies": {
  54. "@es-shims/api": "^2.5.1",
  55. "@ljharb/eslint-config": "^21.1.1",
  56. "auto-changelog": "^2.5.0",
  57. "encoding": "^0.1.13",
  58. "eslint": "=8.8.0",
  59. "functions-have-names": "^1.2.3",
  60. "has-strict-mode": "^1.0.1",
  61. "in-publish": "^2.0.1",
  62. "npmignore": "^0.3.1",
  63. "nyc": "^10.3.2",
  64. "safe-publish-latest": "^2.0.0",
  65. "tape": "^5.9.0"
  66. },
  67. "auto-changelog": {
  68. "output": "CHANGELOG.md",
  69. "template": "keepachangelog",
  70. "unreleased": false,
  71. "commitLimit": false,
  72. "backfillLimit": false,
  73. "hideCredit": true
  74. },
  75. "publishConfig": {
  76. "ignore": [
  77. ".github/workflows"
  78. ]
  79. },
  80. "engines": {
  81. "node": ">= 0.4"
  82. }
  83. }