package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "object.values",
  3. "version": "1.1.5",
  4. "author": "Jordan Harband <ljharb@gmail.com>",
  5. "funding": {
  6. "url": "https://github.com/sponsors/ljharb"
  7. },
  8. "description": "ES2017 spec-compliant Object.values 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": "npx aud --production",
  17. "tests-only": "nyc tape 'test/**/*.js'",
  18. "lint": "eslint .",
  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.values.git"
  26. },
  27. "keywords": [
  28. "Object.values",
  29. "Object.keys",
  30. "Object.entries",
  31. "values",
  32. "ES7",
  33. "ES8",
  34. "ES2017",
  35. "shim",
  36. "object",
  37. "keys",
  38. "entries",
  39. "polyfill",
  40. "es-shim API"
  41. ],
  42. "dependencies": {
  43. "call-bind": "^1.0.2",
  44. "define-properties": "^1.1.3",
  45. "es-abstract": "^1.19.1"
  46. },
  47. "devDependencies": {
  48. "@es-shims/api": "^2.2.2",
  49. "@ljharb/eslint-config": "^18.0.0",
  50. "array.prototype.map": "^1.0.3",
  51. "aud": "^1.1.5",
  52. "auto-changelog": "^2.3.0",
  53. "eslint": "^7.32.0",
  54. "functions-have-names": "^1.2.2",
  55. "has-strict-mode": "^1.0.1",
  56. "nyc": "^10.3.2",
  57. "object-keys": "^1.1.1",
  58. "safe-publish-latest": "^1.1.4",
  59. "tape": "^5.3.1"
  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. "engines": {
  80. "node": ">= 0.4"
  81. },
  82. "auto-changelog": {
  83. "output": "CHANGELOG.md",
  84. "template": "keepachangelog",
  85. "unreleased": false,
  86. "commitLimit": false,
  87. "backfillLimit": false,
  88. "hideCredit": true
  89. }
  90. }