package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "object.fromentries",
  3. "version": "2.0.6",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES proposal-spec-compliant Object.fromEntries shim.",
  9. "license": "MIT",
  10. "main": "index.js",
  11. "scripts": {
  12. "prepublish": "not-in-publish || npm run prepublishOnly",
  13. "prepublishOnly": "safe-publish-latest",
  14. "pretest": "npm run lint",
  15. "test": "npm run tests-only",
  16. "posttest": "aud --production",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "lint": "eslint --ext=js,mjs .",
  19. "postlint": "es-shim-api --bound",
  20. "version": "auto-changelog && git add CHANGELOG.md",
  21. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/es-shims/Object.fromEntries.git"
  26. },
  27. "keywords": [
  28. "Object.fromEntries",
  29. "Object.entries",
  30. "Object.values",
  31. "Object.keys",
  32. "entries",
  33. "values",
  34. "ES7",
  35. "ES8",
  36. "ES2017",
  37. "shim",
  38. "object",
  39. "keys",
  40. "polyfill",
  41. "es-shim API"
  42. ],
  43. "dependencies": {
  44. "call-bind": "^1.0.2",
  45. "define-properties": "^1.1.4",
  46. "es-abstract": "^1.20.4"
  47. },
  48. "devDependencies": {
  49. "@es-shims/api": "^2.2.3",
  50. "@ljharb/eslint-config": "^21.0.0",
  51. "aud": "^2.0.1",
  52. "auto-changelog": "^2.4.0",
  53. "eslint": "=8.8.0",
  54. "has-strict-mode": "^1.0.1",
  55. "in-publish": "^2.0.1",
  56. "nyc": "^10.3.2",
  57. "safe-publish-latest": "^2.0.0",
  58. "tape": "^5.6.1"
  59. },
  60. "testling": {
  61. "files": "test/index.js",
  62. "browsers": [
  63. "iexplore/9.0..latest",
  64. "firefox/4.0..6.0",
  65. "firefox/15.0..latest",
  66. "firefox/nightly",
  67. "chrome/4.0..10.0",
  68. "chrome/20.0..latest",
  69. "chrome/canary",
  70. "opera/11.6..latest",
  71. "opera/next",
  72. "safari/5.0..latest",
  73. "ipad/6.0..latest",
  74. "iphone/6.0..latest",
  75. "android-browser/4.2"
  76. ]
  77. },
  78. "auto-changelog": {
  79. "output": "CHANGELOG.md",
  80. "template": "keepachangelog",
  81. "unreleased": false,
  82. "commitLimit": false,
  83. "backfillLimit": false,
  84. "hideCredit": true,
  85. "startingVersion": "2.0.6"
  86. },
  87. "engines": {
  88. "node": ">= 0.4"
  89. }
  90. }