package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "name": "array-includes",
  3. "version": "3.1.4",
  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 ES7/ES2016 spec-compliant `Array.prototype.includes` 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 --silent tests-only",
  27. "posttest": "npx aud --production",
  28. "tests-only": "nyc tape 'test/**/*.js'",
  29. "lint": "eslint .",
  30. "postlint": "es-shim-api --bound"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/es-shims/array-includes.git"
  35. },
  36. "keywords": [
  37. "Array.prototype.includes",
  38. "includes",
  39. "array",
  40. "ES7",
  41. "shim",
  42. "polyfill",
  43. "contains",
  44. "Array.prototype.contains",
  45. "es-shim API"
  46. ],
  47. "dependencies": {
  48. "call-bind": "^1.0.2",
  49. "define-properties": "^1.1.3",
  50. "es-abstract": "^1.19.1",
  51. "get-intrinsic": "^1.1.1",
  52. "is-string": "^1.0.7"
  53. },
  54. "devDependencies": {
  55. "@es-shims/api": "^2.2.2",
  56. "@ljharb/eslint-config": "^18.0.0",
  57. "aud": "^1.1.5",
  58. "eslint": "^7.32.0",
  59. "evalmd": "^0.0.19",
  60. "foreach": "^2.0.5",
  61. "function-bind": "^1.1.1",
  62. "functions-have-names": "^1.2.2",
  63. "has-strict-mode": "^1.0.1",
  64. "indexof": "^0.0.1",
  65. "nyc": "^10.3.2",
  66. "safe-publish-latest": "^1.1.4",
  67. "tape": "^5.3.1"
  68. },
  69. "testling": {
  70. "files": [
  71. "test/index.js",
  72. "test/implementation.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. }