package.json 3.7 KB

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