package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "name": "array-includes",
  3. "version": "3.1.7",
  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": "aud --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.2",
  53. "define-properties": "^1.2.0",
  54. "es-abstract": "^1.22.1",
  55. "get-intrinsic": "^1.2.1",
  56. "is-string": "^1.0.7"
  57. },
  58. "devDependencies": {
  59. "@es-shims/api": "^2.4.2",
  60. "@ljharb/eslint-config": "^21.1.0",
  61. "aud": "^2.0.3",
  62. "auto-changelog": "^2.4.0",
  63. "eslint": "=8.8.0",
  64. "evalmd": "^0.0.19",
  65. "function-bind": "^1.1.1",
  66. "functions-have-names": "^1.2.3",
  67. "has-strict-mode": "^1.0.1",
  68. "in-publish": "^2.0.1",
  69. "indexof": "^0.0.1",
  70. "npmignore": "^0.3.0",
  71. "nyc": "^10.3.2",
  72. "safe-publish-latest": "^2.0.0",
  73. "tape": "^5.6.6"
  74. },
  75. "testling": {
  76. "files": [
  77. "test/index.js",
  78. "test/implementation.js",
  79. "test/shimmed.js"
  80. ],
  81. "browsers": [
  82. "iexplore/6.0..latest",
  83. "firefox/3.0..6.0",
  84. "firefox/15.0..latest",
  85. "firefox/nightly",
  86. "chrome/4.0..10.0",
  87. "chrome/20.0..latest",
  88. "chrome/canary",
  89. "opera/10.0..latest",
  90. "opera/next",
  91. "safari/4.0..latest",
  92. "ipad/6.0..latest",
  93. "iphone/6.0..latest",
  94. "android-browser/4.2"
  95. ]
  96. },
  97. "engines": {
  98. "node": ">= 0.4"
  99. },
  100. "auto-changelog": {
  101. "output": "CHANGELOG.md",
  102. "template": "keepachangelog",
  103. "unreleased": false,
  104. "commitLimit": false,
  105. "backfillLimit": false,
  106. "hideCredit": true,
  107. "startingVersion": "3.1.6"
  108. },
  109. "publishConfig": {
  110. "ignore": [
  111. ".github/workflows"
  112. ]
  113. }
  114. }