package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "object.fromentries",
  3. "version": "2.0.8",
  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.7",
  45. "define-properties": "^1.2.1",
  46. "es-abstract": "^1.23.2",
  47. "es-object-atoms": "^1.0.0"
  48. },
  49. "devDependencies": {
  50. "@es-shims/api": "^2.4.2",
  51. "@ljharb/eslint-config": "^21.1.0",
  52. "aud": "^2.0.4",
  53. "auto-changelog": "^2.4.0",
  54. "eslint": "=8.8.0",
  55. "has-strict-mode": "^1.0.1",
  56. "in-publish": "^2.0.1",
  57. "nyc": "^10.3.2",
  58. "safe-publish-latest": "^2.0.0",
  59. "tape": "^5.7.5"
  60. },
  61. "testling": {
  62. "files": "test/index.js",
  63. "browsers": [
  64. "iexplore/9.0..latest",
  65. "firefox/4.0..6.0",
  66. "firefox/15.0..latest",
  67. "firefox/nightly",
  68. "chrome/4.0..10.0",
  69. "chrome/20.0..latest",
  70. "chrome/canary",
  71. "opera/11.6..latest",
  72. "opera/next",
  73. "safari/5.0..latest",
  74. "ipad/6.0..latest",
  75. "iphone/6.0..latest",
  76. "android-browser/4.2"
  77. ]
  78. },
  79. "auto-changelog": {
  80. "output": "CHANGELOG.md",
  81. "template": "keepachangelog",
  82. "unreleased": false,
  83. "commitLimit": false,
  84. "backfillLimit": false,
  85. "hideCredit": true,
  86. "startingVersion": "2.0.6"
  87. },
  88. "engines": {
  89. "node": ">= 0.4"
  90. }
  91. }