package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "array.prototype.flat",
  3. "version": "1.3.0",
  4. "author": {
  5. "name": "Jordan Harband",
  6. "email": "ljharb@gmail.com",
  7. "url": "http://ljharb.codes"
  8. },
  9. "funding": {
  10. "url": "https://github.com/sponsors/ljharb"
  11. },
  12. "contributors": [
  13. {
  14. "name": "Jordan Harband",
  15. "email": "ljharb@gmail.com",
  16. "url": "http://ljharb.codes"
  17. }
  18. ],
  19. "description": "An ES2019 spec-compliant `Array.prototype.flat` shim/polyfill/replacement that works as far down as ES3.",
  20. "license": "MIT",
  21. "main": "index.js",
  22. "scripts": {
  23. "prepublish": "not-in-publish || npm run prepublishOnly",
  24. "prepublishOnly": "safe-publish-latest",
  25. "pretest": "npm run --silent lint && evalmd README.md",
  26. "test": "npm run tests-only",
  27. "posttest": "aud --production",
  28. "tests-only": "nyc tape 'test/**/*.js'",
  29. "lint": "eslint --ext=js,mjs .",
  30. "postlint": "es-shim-api --bound"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/es-shims/Array.prototype.flat.git"
  35. },
  36. "keywords": [
  37. "Array.prototype.flatten",
  38. "Array.prototype.flat",
  39. "flatten",
  40. "flat",
  41. "array",
  42. "ESnext",
  43. "shim",
  44. "polyfill",
  45. "flatMap",
  46. "Array.prototype.flatMap",
  47. "es-shim API"
  48. ],
  49. "dependencies": {
  50. "call-bind": "^1.0.2",
  51. "define-properties": "^1.1.3",
  52. "es-abstract": "^1.19.2",
  53. "es-shim-unscopables": "^1.0.0"
  54. },
  55. "devDependencies": {
  56. "@es-shims/api": "^2.2.3",
  57. "@ljharb/eslint-config": "^21.0.0",
  58. "aud": "^2.0.0",
  59. "auto-changelog": "^2.4.0",
  60. "covert": "^1.1.1",
  61. "eslint": "=8.8.0",
  62. "evalmd": "^0.0.19",
  63. "function-bind": "^1.1.1",
  64. "has-strict-mode": "^1.0.1",
  65. "nyc": "^10.3.2",
  66. "object-inspect": "^1.12.0",
  67. "safe-publish-latest": "^2.0.0",
  68. "tape": "^5.5.3"
  69. },
  70. "testling": {
  71. "files": [
  72. "test/index.js",
  73. "test/shimmed.js"
  74. ],
  75. "browsers": [
  76. "iexplore/6.0..latest",
  77. "firefox/3.0..6.0",
  78. "firefox/15.0..latest",
  79. "firefox/nightly",
  80. "chrome/4.0..10.0",
  81. "chrome/20.0..latest",
  82. "chrome/canary",
  83. "opera/10.0..latest",
  84. "opera/next",
  85. "safari/4.0..latest",
  86. "ipad/6.0..latest",
  87. "iphone/6.0..latest",
  88. "android-browser/4.2"
  89. ]
  90. },
  91. "engines": {
  92. "node": ">= 0.4"
  93. },
  94. "greenkeeper": {
  95. "ignore": [
  96. "nyc"
  97. ]
  98. }
  99. }