web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.0 KiB

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