package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "object.groupby",
  3. "version": "1.0.0",
  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.3",
  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.0",
  60. "nyc": "^10.3.2",
  61. "safe-publish-latest": "^2.0.0",
  62. "tape": "^5.6.4"
  63. },
  64. "dependencies": {
  65. "call-bind": "^1.0.2",
  66. "define-properties": "^1.2.0",
  67. "es-abstract": "^1.21.2",
  68. "get-intrinsic": "^1.2.1"
  69. },
  70. "auto-changelog": {
  71. "output": "CHANGELOG.md",
  72. "template": "keepachangelog",
  73. "unreleased": false,
  74. "commitLimit": false,
  75. "backfillLimit": false,
  76. "hideCredit": true
  77. },
  78. "publishConfig": {
  79. "ignore": [
  80. ".github/workflows"
  81. ]
  82. }
  83. }