package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. "_args": [
  3. [
  4. "is-callable@1.2.7",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "is-callable@1.2.7",
  10. "_id": "is-callable@1.2.7",
  11. "_inBundle": false,
  12. "_integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
  13. "_location": "/is-callable",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "is-callable@1.2.7",
  19. "name": "is-callable",
  20. "escapedName": "is-callable",
  21. "rawSpec": "1.2.7",
  22. "saveSpec": null,
  23. "fetchSpec": "1.2.7"
  24. },
  25. "_requiredBy": [
  26. "/es-abstract",
  27. "/es-to-primitive",
  28. "/for-each"
  29. ],
  30. "_resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
  31. "_spec": "1.2.7",
  32. "_where": "E:\\2023\\5\\myjadmin",
  33. "author": {
  34. "name": "Jordan Harband",
  35. "email": "ljharb@gmail.com",
  36. "url": "http://ljharb.codes"
  37. },
  38. "auto-changelog": {
  39. "output": "CHANGELOG.md",
  40. "template": "keepachangelog",
  41. "unreleased": false,
  42. "commitLimit": false,
  43. "backfillLimit": false,
  44. "hideCredit": true,
  45. "startingVersion": "v1.2.5"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/inspect-js/is-callable/issues"
  49. },
  50. "contributors": [
  51. {
  52. "name": "Jordan Harband",
  53. "email": "ljharb@gmail.com",
  54. "url": "http://ljharb.codes"
  55. }
  56. ],
  57. "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
  58. "devDependencies": {
  59. "@ljharb/eslint-config": "^21.0.0",
  60. "aud": "^2.0.0",
  61. "auto-changelog": "^2.4.0",
  62. "available-typed-arrays": "^1.0.5",
  63. "eclint": "^2.8.1",
  64. "es-value-fixtures": "^1.4.2",
  65. "eslint": "=8.8.0",
  66. "for-each": "^0.3.3",
  67. "has-tostringtag": "^1.0.0",
  68. "make-arrow-function": "^1.2.0",
  69. "make-async-function": "^1.0.0",
  70. "make-generator-function": "^2.0.0",
  71. "npmignore": "^0.3.0",
  72. "nyc": "^10.3.2",
  73. "object-inspect": "^1.12.2",
  74. "rimraf": "^2.7.1",
  75. "safe-publish-latest": "^2.0.0",
  76. "tape": "^5.6.0"
  77. },
  78. "engines": {
  79. "node": ">= 0.4"
  80. },
  81. "funding": {
  82. "url": "https://github.com/sponsors/ljharb"
  83. },
  84. "homepage": "https://github.com/inspect-js/is-callable#readme",
  85. "keywords": [
  86. "Function",
  87. "function",
  88. "callable",
  89. "generator",
  90. "generator function",
  91. "arrow",
  92. "arrow function",
  93. "ES6",
  94. "toStringTag",
  95. "@@toStringTag"
  96. ],
  97. "license": "MIT",
  98. "main": "index.js",
  99. "name": "is-callable",
  100. "publishConfig": {
  101. "ignore": [
  102. ".github/workflows"
  103. ]
  104. },
  105. "repository": {
  106. "type": "git",
  107. "url": "git://github.com/inspect-js/is-callable.git"
  108. },
  109. "scripts": {
  110. "lint": "eslint --ext=js,mjs .",
  111. "posttest": "aud --production",
  112. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
  113. "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  114. "prepack": "npmignore --auto --commentLines=autogenerated",
  115. "prepublish": "not-in-publish || npm run prepublishOnly",
  116. "prepublishOnly": "safe-publish-latest",
  117. "pretest": "npm run --silent lint",
  118. "test": "npm run tests-only --",
  119. "tests-only": "nyc tape 'test/**/*.js'",
  120. "version": "auto-changelog && git add CHANGELOG.md"
  121. },
  122. "testling": {
  123. "files": "test/index.js",
  124. "browsers": [
  125. "iexplore/6.0..latest",
  126. "firefox/3.0..6.0",
  127. "firefox/15.0..latest",
  128. "firefox/nightly",
  129. "chrome/4.0..10.0",
  130. "chrome/20.0..latest",
  131. "chrome/canary",
  132. "opera/10.0..latest",
  133. "opera/next",
  134. "safari/4.0..latest",
  135. "ipad/6.0..latest",
  136. "iphone/6.0..latest",
  137. "android-browser/4.2"
  138. ]
  139. },
  140. "version": "1.2.7"
  141. }