package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "object.entries",
  3. "version": "1.1.7",
  4. "author": "Jordan Harband",
  5. "description": "ES2017 spec-compliant Object.entries shim.",
  6. "license": "MIT",
  7. "main": "index.js",
  8. "scripts": {
  9. "prepack": "npmignore --auto --commentLines=autogenerated",
  10. "prepublish": "not-in-publish || npm run prepublishOnly",
  11. "prepublishOnly": "safe-publish-latest",
  12. "lint": "eslint --ext=js,mjs .",
  13. "postlint": "es-shim-api --bound",
  14. "pretest": "npm run --silent lint",
  15. "test": "npm run tests-only",
  16. "posttest": "aud --production",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "version": "auto-changelog && git add CHANGELOG.md",
  19. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/es-shims/Object.entries.git"
  24. },
  25. "keywords": [
  26. "Object.entries",
  27. "Object.values",
  28. "Object.keys",
  29. "entries",
  30. "values",
  31. "ES7",
  32. "ES8",
  33. "ES2017",
  34. "shim",
  35. "object",
  36. "keys",
  37. "polyfill",
  38. "es-shim API"
  39. ],
  40. "dependencies": {
  41. "call-bind": "^1.0.2",
  42. "define-properties": "^1.2.0",
  43. "es-abstract": "^1.22.1"
  44. },
  45. "devDependencies": {
  46. "@es-shims/api": "^2.4.2",
  47. "@ljharb/eslint-config": "^21.1.0",
  48. "array.prototype.map": "^1.0.5",
  49. "aud": "^2.0.3",
  50. "auto-changelog": "^2.4.0",
  51. "eslint": "=8.8.0",
  52. "functions-have-names": "^1.2.3",
  53. "has-strict-mode": "^1.0.1",
  54. "in-publish": "^2.0.1",
  55. "npmignore": "^0.3.0",
  56. "nyc": "^10.3.2",
  57. "safe-publish-latest": "^2.0.0",
  58. "tape": "^5.6.6"
  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. "engines": {
  79. "node": ">= 0.4"
  80. },
  81. "auto-changelog": {
  82. "output": "CHANGELOG.md",
  83. "template": "keepachangelog",
  84. "unreleased": false,
  85. "commitLimit": false,
  86. "backfillLimit": false,
  87. "hideCredit": true
  88. },
  89. "publishConfig": {
  90. "ignore": [
  91. ".github/workflows"
  92. ]
  93. }
  94. }