package.json 2.0 KB

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