package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "name": "array-includes",
  3. "version": "3.1.5",
  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",
  26. "test": "npm run --silent tests-only",
  27. "posttest": "aud --production",
  28. "tests-only": "nyc tape 'test/**/*.js'",
  29. "prelint": "evalmd README.md",
  30. "lint": "eslint --ext=js,mjs .",
  31. "postlint": "es-shim-api --bound"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/es-shims/array-includes.git"
  36. },
  37. "keywords": [
  38. "Array.prototype.includes",
  39. "includes",
  40. "array",
  41. "ES7",
  42. "shim",
  43. "polyfill",
  44. "contains",
  45. "Array.prototype.contains",
  46. "es-shim API"
  47. ],
  48. "dependencies": {
  49. "call-bind": "^1.0.2",
  50. "define-properties": "^1.1.4",
  51. "es-abstract": "^1.19.5",
  52. "get-intrinsic": "^1.1.1",
  53. "is-string": "^1.0.7"
  54. },
  55. "devDependencies": {
  56. "@es-shims/api": "^2.2.3",
  57. "@ljharb/eslint-config": "^21.0.0",
  58. "aud": "^2.0.0",
  59. "eslint": "=8.8.0",
  60. "evalmd": "^0.0.19",
  61. "foreach": "^2.0.5",
  62. "function-bind": "^1.1.1",
  63. "functions-have-names": "^1.2.3",
  64. "has-strict-mode": "^1.0.1",
  65. "indexof": "^0.0.1",
  66. "nyc": "^10.3.2",
  67. "safe-publish-latest": "^2.0.0",
  68. "tape": "^5.5.3"
  69. },
  70. "testling": {
  71. "files": [
  72. "test/index.js",
  73. "test/implementation.js",
  74. "test/shimmed.js"
  75. ],
  76. "browsers": [
  77. "iexplore/6.0..latest",
  78. "firefox/3.0..6.0",
  79. "firefox/15.0..latest",
  80. "firefox/nightly",
  81. "chrome/4.0..10.0",
  82. "chrome/20.0..latest",
  83. "chrome/canary",
  84. "opera/10.0..latest",
  85. "opera/next",
  86. "safari/4.0..latest",
  87. "ipad/6.0..latest",
  88. "iphone/6.0..latest",
  89. "android-browser/4.2"
  90. ]
  91. },
  92. "engines": {
  93. "node": ">= 0.4"
  94. }
  95. }