package.json 1.7 KB

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