package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "is-callable",
  3. "version": "1.2.4",
  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": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
  20. "license": "MIT",
  21. "main": "index.js",
  22. "scripts": {
  23. "prepublishOnly": "safe-publish-latest",
  24. "prepublish": "not-in-publish || npm run prepublishOnly",
  25. "pretest": "npm run --silent lint",
  26. "test": "npm run tests-only --",
  27. "posttest": "aud --production",
  28. "tests-only": "nyc tape 'test/**/*.js'",
  29. "prelint": "eclint check *",
  30. "lint": "eslint ."
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "git://github.com/inspect-js/is-callable.git"
  35. },
  36. "keywords": [
  37. "Function",
  38. "function",
  39. "callable",
  40. "generator",
  41. "generator function",
  42. "arrow",
  43. "arrow function",
  44. "ES6",
  45. "toStringTag",
  46. "@@toStringTag"
  47. ],
  48. "devDependencies": {
  49. "@ljharb/eslint-config": "^17.6.0",
  50. "aud": "^1.1.5",
  51. "available-typed-arrays": "^1.0.4",
  52. "eclint": "^2.8.1",
  53. "es-value-fixtures": "^1.2.1",
  54. "eslint": "^7.32.0",
  55. "for-each": "^0.3.3",
  56. "has-tostringtag": "^1.0.0",
  57. "make-arrow-function": "^1.2.0",
  58. "make-async-function": "^1.0.0",
  59. "make-generator-function": "^2.0.0",
  60. "nyc": "^10.3.2",
  61. "object-inspect": "^1.11.0",
  62. "rimraf": "^2.7.1",
  63. "safe-publish-latest": "^1.1.4",
  64. "tape": "^5.3.0"
  65. },
  66. "testling": {
  67. "files": "test/index.js",
  68. "browsers": [
  69. "iexplore/6.0..latest",
  70. "firefox/3.0..6.0",
  71. "firefox/15.0..latest",
  72. "firefox/nightly",
  73. "chrome/4.0..10.0",
  74. "chrome/20.0..latest",
  75. "chrome/canary",
  76. "opera/10.0..latest",
  77. "opera/next",
  78. "safari/4.0..latest",
  79. "ipad/6.0..latest",
  80. "iphone/6.0..latest",
  81. "android-browser/4.2"
  82. ]
  83. },
  84. "engines": {
  85. "node": ">= 0.4"
  86. },
  87. "greenkeeper": {
  88. "ignore": [
  89. "rimraf"
  90. ]
  91. }
  92. }