package.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "_from": "is-callable@^1.1.4",
  3. "_id": "is-callable@1.1.4",
  4. "_inBundle": false,
  5. "_integrity": "sha1-HhrfIZ4e62hNaR+dagX/DTCiTXU=",
  6. "_location": "/is-callable",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "is-callable@^1.1.4",
  12. "name": "is-callable",
  13. "escapedName": "is-callable",
  14. "rawSpec": "^1.1.4",
  15. "saveSpec": null,
  16. "fetchSpec": "^1.1.4"
  17. },
  18. "_requiredBy": [
  19. "/es-abstract",
  20. "/es-to-primitive"
  21. ],
  22. "_resolved": "http://registry.npm.taobao.org/is-callable/download/is-callable-1.1.4.tgz",
  23. "_shasum": "1e1adf219e1eeb684d691f9d6a05ff0d30a24d75",
  24. "_spec": "is-callable@^1.1.4",
  25. "_where": "E:\\dev\\007\\node_module\\node10\\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": "^12.2.1",
  47. "covert": "^1.1.0",
  48. "editorconfig-tools": "^0.1.1",
  49. "eslint": "^4.19.1",
  50. "foreach": "^2.0.5",
  51. "istanbul": "1.1.0-alpha.1",
  52. "istanbul-merge": "^1.1.1",
  53. "jscs": "^3.0.7",
  54. "make-arrow-function": "^1.1.0",
  55. "make-generator-function": "^1.1.0",
  56. "nsp": "^3.2.1",
  57. "rimraf": "^2.6.2",
  58. "semver": "^5.5.0",
  59. "tape": "^4.9.1"
  60. },
  61. "engines": {
  62. "node": ">= 0.4"
  63. },
  64. "homepage": "https://github.com/ljharb/is-callable#readme",
  65. "keywords": [
  66. "Function",
  67. "function",
  68. "callable",
  69. "generator",
  70. "generator function",
  71. "arrow",
  72. "arrow function",
  73. "ES6",
  74. "toStringTag",
  75. "@@toStringTag"
  76. ],
  77. "license": "MIT",
  78. "main": "index.js",
  79. "name": "is-callable",
  80. "repository": {
  81. "type": "git",
  82. "url": "git://github.com/ljharb/is-callable.git"
  83. },
  84. "scripts": {
  85. "coverage": "npm run --silent istanbul",
  86. "covert": "covert test.js",
  87. "covert:quiet": "covert test.js --quiet",
  88. "eslint": "eslint *.js",
  89. "istanbul": "npm run --silent istanbul:clean && npm run --silent istanbul:std && npm run --silent istanbul:harmony && npm run --silent istanbul:merge && istanbul check",
  90. "istanbul:clean": "rimraf coverage coverage-std coverage-harmony",
  91. "istanbul:harmony": "node --harmony ./node_modules/istanbul/lib/cli.js cover test.js --dir coverage-harmony",
  92. "istanbul:merge": "istanbul-merge --out coverage/coverage.raw.json coverage-harmony/coverage.raw.json coverage-std/coverage.raw.json && istanbul report html",
  93. "istanbul:std": "istanbul cover test.js --report html --dir coverage-std",
  94. "jscs": "jscs *.js",
  95. "lint": "npm run jscs && npm run eslint",
  96. "posttest": "npm run --silent security",
  97. "prelint": "editorconfig-tools check *",
  98. "pretest": "npm run --silent lint",
  99. "security": "nsp check",
  100. "test": "npm run --silent tests-only",
  101. "test:staging": "node --es-staging test.js",
  102. "test:stock": "node test.js",
  103. "tests-only": "npm run --silent test:stock && npm run --silent test:staging"
  104. },
  105. "testling": {
  106. "files": "test.js",
  107. "browsers": [
  108. "iexplore/6.0..latest",
  109. "firefox/3.0..6.0",
  110. "firefox/15.0..latest",
  111. "firefox/nightly",
  112. "chrome/4.0..10.0",
  113. "chrome/20.0..latest",
  114. "chrome/canary",
  115. "opera/10.0..latest",
  116. "opera/next",
  117. "safari/4.0..latest",
  118. "ipad/6.0..latest",
  119. "iphone/6.0..latest",
  120. "android-browser/4.2"
  121. ]
  122. },
  123. "version": "1.1.4"
  124. }