package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "string.prototype.trimstart",
  3. "version": "1.0.8",
  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. "prepack": "npmignore --auto --commentLines=autogenerated",
  17. "prepublishOnly": "safe-publish-latest",
  18. "prepublish": "not-in-publish || npm run prepublishOnly",
  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": "aud --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.trimStart.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. "devDependencies": {
  48. "@es-shims/api": "^2.4.2",
  49. "@ljharb/eslint-config": "^21.1.0",
  50. "aud": "^2.0.4",
  51. "auto-changelog": "^2.4.0",
  52. "eslint": "=8.8.0",
  53. "functions-have-names": "^1.2.3",
  54. "has-strict-mode": "^1.0.1",
  55. "in-publish": "^2.0.1",
  56. "npmignore": "^0.3.1",
  57. "nyc": "^10.3.2",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.7.5"
  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. "dependencies": {
  70. "call-bind": "^1.0.7",
  71. "define-properties": "^1.2.1",
  72. "es-object-atoms": "^1.0.0"
  73. },
  74. "publishConfig": {
  75. "ignore": [
  76. ".github/workflows"
  77. ]
  78. },
  79. "engines": {
  80. "node": ">= 0.4"
  81. }
  82. }