package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. {
  2. "_from": "is-callable@^1.2.3",
  3. "_id": "is-callable@1.2.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==",
  6. "_location": "/is-callable",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "is-callable@^1.2.3",
  12. "name": "is-callable",
  13. "escapedName": "is-callable",
  14. "rawSpec": "^1.2.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.2.3"
  17. },
  18. "_requiredBy": [
  19. "/es-abstract",
  20. "/es-to-primitive"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz",
  23. "_shasum": "8b1e0500b73a1d76c70487636f368e519de8db8e",
  24. "_spec": "is-callable@^1.2.3",
  25. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\es-abstract",
  26. "author": {
  27. "name": "Jordan Harband",
  28. "email": "ljharb@gmail.com",
  29. "url": "http://ljharb.codes"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/ljharb/is-callable/issues"
  33. },
  34. "bundleDependencies": false,
  35. "contributors": [
  36. {
  37. "name": "Jordan Harband",
  38. "email": "ljharb@gmail.com",
  39. "url": "http://ljharb.codes"
  40. }
  41. ],
  42. "dependencies": {},
  43. "deprecated": false,
  44. "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
  45. "devDependencies": {
  46. "@ljharb/eslint-config": "^17.5.0",
  47. "aud": "^1.1.3",
  48. "covert": "^1.1.1",
  49. "eclint": "^2.8.1",
  50. "eslint": "^7.19.0",
  51. "foreach": "^2.0.5",
  52. "istanbul": "1.1.0-alpha.1",
  53. "istanbul-merge": "^1.1.1",
  54. "make-arrow-function": "^1.2.0",
  55. "make-async-function": "^1.0.0",
  56. "make-generator-function": "^2.0.0",
  57. "rimraf": "^2.7.1",
  58. "safe-publish-latest": "^1.1.4",
  59. "tape": "^5.1.1"
  60. },
  61. "engines": {
  62. "node": ">= 0.4"
  63. },
  64. "funding": {
  65. "url": "https://github.com/sponsors/ljharb"
  66. },
  67. "greenkeeper": {
  68. "ignore": [
  69. "rimraf"
  70. ]
  71. },
  72. "homepage": "https://github.com/ljharb/is-callable#readme",
  73. "keywords": [
  74. "Function",
  75. "function",
  76. "callable",
  77. "generator",
  78. "generator function",
  79. "arrow",
  80. "arrow function",
  81. "ES6",
  82. "toStringTag",
  83. "@@toStringTag"
  84. ],
  85. "license": "MIT",
  86. "main": "index.js",
  87. "name": "is-callable",
  88. "repository": {
  89. "type": "git",
  90. "url": "git://github.com/ljharb/is-callable.git"
  91. },
  92. "scripts": {
  93. "coverage": "npm run --silent istanbul",
  94. "covert": "covert test",
  95. "covert:quiet": "covert test --quiet",
  96. "istanbul": "npm run --silent istanbul:clean && npm run --silent istanbul:std && npm run --silent istanbul:harmony && npm run --silent istanbul:merge && istanbul check",
  97. "istanbul:clean": "rimraf coverage coverage-std coverage-harmony",
  98. "istanbul:harmony": "node --harmony ./node_modules/istanbul/lib/cli.js cover test --dir coverage-harmony",
  99. "istanbul:merge": "istanbul-merge --out coverage/coverage.raw.json coverage-harmony/coverage.raw.json coverage-std/coverage.raw.json && istanbul report html",
  100. "istanbul:std": "istanbul cover test --report html --dir coverage-std",
  101. "lint": "eslint .",
  102. "posttest": "npx aud --production",
  103. "prelint": "eclint check *",
  104. "prepublish": "safe-publish-latest",
  105. "pretest": "npm run --silent lint",
  106. "test": "npm run --silent tests-only",
  107. "test:staging": "node --es-staging test",
  108. "test:stock": "node test",
  109. "tests-only": "npm run --silent test:stock && npm run --silent test:staging"
  110. },
  111. "testling": {
  112. "files": "test/index.js",
  113. "browsers": [
  114. "iexplore/6.0..latest",
  115. "firefox/3.0..6.0",
  116. "firefox/15.0..latest",
  117. "firefox/nightly",
  118. "chrome/4.0..10.0",
  119. "chrome/20.0..latest",
  120. "chrome/canary",
  121. "opera/10.0..latest",
  122. "opera/next",
  123. "safari/4.0..latest",
  124. "ipad/6.0..latest",
  125. "iphone/6.0..latest",
  126. "android-browser/4.2"
  127. ]
  128. },
  129. "version": "1.2.3"
  130. }