package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "object.groupby",
  3. "version": "1.0.2",
  4. "description": "An ESnext spec-compliant `Object.groupBy` shim/polyfill/replacement that works as far down as ES3.",
  5. "main": "index.js",
  6. "exports": {
  7. ".": "./index.js",
  8. "./auto": "./auto.js",
  9. "./polyfill": "./polyfill.js",
  10. "./implementation": "./implementation.js",
  11. "./shim": "./shim.js",
  12. "./package.json": "./package.json"
  13. },
  14. "scripts": {
  15. "prepack": "npmignore --auto --commentLines=autogenerated",
  16. "prepublish": "not-in-publish || npm run prepublishOnly",
  17. "prepublishOnly": "safe-publish-latest",
  18. "pretest": "npm run --silent lint",
  19. "test": "npm run tests-only",
  20. "posttest": "aud --production",
  21. "tests-only": "nyc tape 'test/**/*.js'",
  22. "lint": "eslint --ext=js,mjs .",
  23. "postlint": "es-shim-api --bound && evalmd README.md",
  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+https://github.com/es-shims/Object.groupBy.git"
  30. },
  31. "keywords": [
  32. "ecmascript",
  33. "javascript",
  34. "polyfill",
  35. "shim",
  36. "es-shim API",
  37. "array",
  38. "object",
  39. "group",
  40. "groupBy"
  41. ],
  42. "author": "Jordan Harband <ljharb@gmail.com>",
  43. "license": "MIT",
  44. "bugs": {
  45. "url": "https://github.com/es-shims/Object.groupBy/issues"
  46. },
  47. "homepage": "https://github.com/es-shims/Object.groupBy#readme",
  48. "devDependencies": {
  49. "@es-shims/api": "^2.4.2",
  50. "@ljharb/eslint-config": "^21.1.0",
  51. "aud": "^2.0.4",
  52. "auto-changelog": "^2.4.0",
  53. "es-value-fixtures": "^1.4.2",
  54. "eslint": "=8.8.0",
  55. "evalmd": "^0.0.19",
  56. "for-each": "^0.3.3",
  57. "functions-have-names": "^1.2.3",
  58. "in-publish": "^2.0.1",
  59. "npmignore": "^0.3.1",
  60. "nyc": "^10.3.2",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.7.4"
  63. },
  64. "dependencies": {
  65. "array.prototype.filter": "^1.0.3",
  66. "call-bind": "^1.0.5",
  67. "define-properties": "^1.2.1",
  68. "es-abstract": "^1.22.3",
  69. "es-errors": "^1.0.0"
  70. },
  71. "auto-changelog": {
  72. "output": "CHANGELOG.md",
  73. "template": "keepachangelog",
  74. "unreleased": false,
  75. "commitLimit": false,
  76. "backfillLimit": false,
  77. "hideCredit": true
  78. },
  79. "publishConfig": {
  80. "ignore": [
  81. ".github/workflows"
  82. ]
  83. }
  84. }