package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "string.prototype.trimstart",
  3. "version": "1.0.5",
  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.trimStart shim.",
  13. "license": "MIT",
  14. "main": "index.js",
  15. "scripts": {
  16. "prepublishOnly": "safe-publish-latest",
  17. "prepublish": "not-in-publish || npm run prepublishOnly",
  18. "lint": "eslint --ext=js,mjs .",
  19. "postlint": "es-shim-api --bound",
  20. "pretest": "npm run lint",
  21. "test": "npm run tests-only",
  22. "posttest": "aud --production",
  23. "tests-only": "nyc tape 'test/**/*.js'",
  24. "version": "auto-changelog && git add CHANGELOG.md",
  25. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  26. },
  27. "repository": {
  28. "type": "git",
  29. "url": "git://github.com/es-shims/String.prototype.trimStart.git"
  30. },
  31. "keywords": [
  32. "es6",
  33. "es7",
  34. "es8",
  35. "javascript",
  36. "prototype",
  37. "polyfill",
  38. "utility",
  39. "trim",
  40. "trimLeft",
  41. "trimRight",
  42. "trimStart",
  43. "trimEnd",
  44. "tc39"
  45. ],
  46. "devDependencies": {
  47. "@es-shims/api": "^2.2.3",
  48. "@ljharb/eslint-config": "^21.0.0",
  49. "aud": "^2.0.0",
  50. "auto-changelog": "^2.4.0",
  51. "eslint": "=8.8.0",
  52. "functions-have-names": "^1.2.3",
  53. "has-strict-mode": "^1.0.1",
  54. "nyc": "^10.3.2",
  55. "safe-publish-latest": "^2.0.0",
  56. "tape": "^5.5.3"
  57. },
  58. "auto-changelog": {
  59. "output": "CHANGELOG.md",
  60. "template": "keepachangelog",
  61. "unreleased": false,
  62. "commitLimit": false,
  63. "backfillLimit": false,
  64. "hideCredit": true
  65. },
  66. "dependencies": {
  67. "call-bind": "^1.0.2",
  68. "define-properties": "^1.1.4",
  69. "es-abstract": "^1.19.5"
  70. }
  71. }