package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "array-includes",
  3. "version": "3.0.3",
  4. "author": {
  5. "name": "Jordan Harband",
  6. "email": "ljharb@gmail.com",
  7. "url": "http://ljharb.codes"
  8. },
  9. "contributors": [
  10. {
  11. "name": "Jordan Harband",
  12. "email": "ljharb@gmail.com",
  13. "url": "http://ljharb.codes"
  14. }
  15. ],
  16. "description": "An ES7/ES2016 spec-compliant `Array.prototype.includes` shim/polyfill/replacement that works as far down as ES3.",
  17. "license": "MIT",
  18. "main": "index.js",
  19. "scripts": {
  20. "pretest": "npm run --silent lint && evalmd README.md",
  21. "test": "npm run --silent tests-only",
  22. "posttest": "npm run --silent security",
  23. "tests-only": "es-shim-api --bound && npm run --silent test:shimmed && npm run --silent test:module",
  24. "test:shimmed": "node test/shimmed.js",
  25. "test:module": "node test/index.js",
  26. "coverage": "covert test/*.js",
  27. "coverage:quiet": "covert test/*.js --quiet",
  28. "lint": "npm run --silent jscs && npm run --silent eslint",
  29. "jscs": "jscs test/*.js *.js",
  30. "eslint": "eslint test/*.js *.js",
  31. "security": "nsp check"
  32. },
  33. "repository": {
  34. "type": "git",
  35. "url": "git://github.com/ljharb/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. "define-properties": "^1.1.2",
  50. "es-abstract": "^1.7.0"
  51. },
  52. "devDependencies": {
  53. "foreach": "^2.0.5",
  54. "function-bind": "^1.1.0",
  55. "tape": "^4.6.3",
  56. "indexof": "^0.0.1",
  57. "covert": "^1.1.0",
  58. "jscs": "^3.0.7",
  59. "nsp": "^2.6.3",
  60. "eslint": "^3.19.0",
  61. "@ljharb/eslint-config": "^11.0.0",
  62. "semver": "^5.3.0",
  63. "replace": "^0.3.0",
  64. "@es-shims/api": "^1.2.0",
  65. "evalmd": "^0.0.17"
  66. },
  67. "testling": {
  68. "files": [
  69. "test/index.js",
  70. "test/shimmed.js"
  71. ],
  72. "browsers": [
  73. "iexplore/6.0..latest",
  74. "firefox/3.0..6.0",
  75. "firefox/15.0..latest",
  76. "firefox/nightly",
  77. "chrome/4.0..10.0",
  78. "chrome/20.0..latest",
  79. "chrome/canary",
  80. "opera/10.0..latest",
  81. "opera/next",
  82. "safari/4.0..latest",
  83. "ipad/6.0..latest",
  84. "iphone/6.0..latest",
  85. "android-browser/4.2"
  86. ]
  87. },
  88. "engines": {
  89. "node": ">= 0.4"
  90. }
  91. }