package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "object.fromentries",
  3. "version": "2.0.5",
  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 .",
  19. "postlint": "es-shim-api --bound"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/es-shims/Object.fromEntries.git"
  24. },
  25. "keywords": [
  26. "Object.fromEntries",
  27. "Object.entries",
  28. "Object.values",
  29. "Object.keys",
  30. "entries",
  31. "values",
  32. "ES7",
  33. "ES8",
  34. "ES2017",
  35. "shim",
  36. "object",
  37. "keys",
  38. "polyfill",
  39. "es-shim API"
  40. ],
  41. "dependencies": {
  42. "call-bind": "^1.0.2",
  43. "define-properties": "^1.1.3",
  44. "es-abstract": "^1.19.1"
  45. },
  46. "devDependencies": {
  47. "@es-shims/api": "^2.2.1",
  48. "@ljharb/eslint-config": "^18.0.0",
  49. "aud": "^1.1.5",
  50. "eslint": "^7.32.0",
  51. "has-strict-mode": "^1.0.1",
  52. "nyc": "^10.3.2",
  53. "safe-publish-latest": "^1.1.4",
  54. "tape": "^5.3.1"
  55. },
  56. "testling": {
  57. "files": "test/index.js",
  58. "browsers": [
  59. "iexplore/9.0..latest",
  60. "firefox/4.0..6.0",
  61. "firefox/15.0..latest",
  62. "firefox/nightly",
  63. "chrome/4.0..10.0",
  64. "chrome/20.0..latest",
  65. "chrome/canary",
  66. "opera/11.6..latest",
  67. "opera/next",
  68. "safari/5.0..latest",
  69. "ipad/6.0..latest",
  70. "iphone/6.0..latest",
  71. "android-browser/4.2"
  72. ]
  73. },
  74. "engines": {
  75. "node": ">= 0.4"
  76. }
  77. }