package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "name": "array-includes",
  3. "version": "3.1.9",
  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. "prepack": "npmignore --auto --commentLines=autogenerated",
  24. "prepublish": "not-in-publish || npm run prepublishOnly",
  25. "prepublishOnly": "safe-publish-latest",
  26. "pretest": "npm run --silent lint",
  27. "test": "npm run --silent tests-only",
  28. "posttest": "npx npm@\">= 10.2\" audit --production",
  29. "tests-only": "nyc tape 'test/**/*.js'",
  30. "prelint": "evalmd README.md",
  31. "lint": "eslint --ext=js,mjs .",
  32. "postlint": "es-shim-api --bound",
  33. "version": "auto-changelog && git add CHANGELOG.md",
  34. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  35. },
  36. "repository": {
  37. "type": "git",
  38. "url": "git://github.com/es-shims/array-includes.git"
  39. },
  40. "keywords": [
  41. "Array.prototype.includes",
  42. "includes",
  43. "array",
  44. "ES7",
  45. "shim",
  46. "polyfill",
  47. "contains",
  48. "Array.prototype.contains",
  49. "es-shim API"
  50. ],
  51. "dependencies": {
  52. "call-bind": "^1.0.8",
  53. "call-bound": "^1.0.4",
  54. "define-properties": "^1.2.1",
  55. "es-abstract": "^1.24.0",
  56. "es-object-atoms": "^1.1.1",
  57. "get-intrinsic": "^1.3.0",
  58. "is-string": "^1.1.1",
  59. "math-intrinsics": "^1.1.0"
  60. },
  61. "devDependencies": {
  62. "@es-shims/api": "^2.5.1",
  63. "@ljharb/eslint-config": "^21.1.1",
  64. "auto-changelog": "^2.5.0",
  65. "encoding": "^0.1.13",
  66. "eslint": "=8.8.0",
  67. "evalmd": "^0.0.19",
  68. "functions-have-names": "^1.2.3",
  69. "has-strict-mode": "^1.1.0",
  70. "in-publish": "^2.0.1",
  71. "npmignore": "^0.3.1",
  72. "nyc": "^10.3.2",
  73. "safe-publish-latest": "^2.0.0",
  74. "tape": "^5.9.0"
  75. },
  76. "testling": {
  77. "files": [
  78. "test/index.js",
  79. "test/implementation.js",
  80. "test/shimmed.js"
  81. ],
  82. "browsers": [
  83. "iexplore/6.0..latest",
  84. "firefox/3.0..6.0",
  85. "firefox/15.0..latest",
  86. "firefox/nightly",
  87. "chrome/4.0..10.0",
  88. "chrome/20.0..latest",
  89. "chrome/canary",
  90. "opera/10.0..latest",
  91. "opera/next",
  92. "safari/4.0..latest",
  93. "ipad/6.0..latest",
  94. "iphone/6.0..latest",
  95. "android-browser/4.2"
  96. ]
  97. },
  98. "engines": {
  99. "node": ">= 0.4"
  100. },
  101. "auto-changelog": {
  102. "output": "CHANGELOG.md",
  103. "template": "keepachangelog",
  104. "unreleased": false,
  105. "commitLimit": false,
  106. "backfillLimit": false,
  107. "hideCredit": true,
  108. "startingVersion": "3.1.6"
  109. },
  110. "publishConfig": {
  111. "ignore": [
  112. ".github/workflows"
  113. ]
  114. }
  115. }