package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. {
  2. "_args": [
  3. [
  4. {
  5. "raw": "async@~1.5.2",
  6. "scope": null,
  7. "escapedName": "async",
  8. "name": "async",
  9. "rawSpec": "~1.5.2",
  10. "spec": ">=1.5.2 <1.6.0",
  11. "type": "range"
  12. },
  13. "/home/king/Desktop/FINAL/AhMyth/app/node_modules/geoip-lite"
  14. ]
  15. ],
  16. "_from": "async@>=1.5.2 <1.6.0",
  17. "_id": "async@1.5.2",
  18. "_inCache": true,
  19. "_installable": true,
  20. "_location": "/async",
  21. "_nodeVersion": "4.2.3",
  22. "_npmUser": {
  23. "name": "aearly",
  24. "email": "alexander.early@gmail.com"
  25. },
  26. "_npmVersion": "3.5.2",
  27. "_phantomChildren": {},
  28. "_requested": {
  29. "raw": "async@~1.5.2",
  30. "scope": null,
  31. "escapedName": "async",
  32. "name": "async",
  33. "rawSpec": "~1.5.2",
  34. "spec": ">=1.5.2 <1.6.0",
  35. "type": "range"
  36. },
  37. "_requiredBy": [
  38. "/geoip-lite",
  39. "/rework-import/globby"
  40. ],
  41. "_resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
  42. "_shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a",
  43. "_shrinkwrap": null,
  44. "_spec": "async@~1.5.2",
  45. "_where": "/home/king/Desktop/FINAL/AhMyth/app/node_modules/geoip-lite",
  46. "author": {
  47. "name": "Caolan McMahon"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/caolan/async/issues"
  51. },
  52. "dependencies": {},
  53. "description": "Higher-order functions and common patterns for asynchronous code",
  54. "devDependencies": {
  55. "benchmark": "github:bestiejs/benchmark.js",
  56. "bluebird": "^2.9.32",
  57. "chai": "^3.1.0",
  58. "coveralls": "^2.11.2",
  59. "es6-promise": "^2.3.0",
  60. "jscs": "^1.13.1",
  61. "jshint": "~2.8.0",
  62. "karma": "^0.13.2",
  63. "karma-browserify": "^4.2.1",
  64. "karma-firefox-launcher": "^0.1.6",
  65. "karma-mocha": "^0.2.0",
  66. "karma-mocha-reporter": "^1.0.2",
  67. "lodash": "^3.9.0",
  68. "mkdirp": "~0.5.1",
  69. "mocha": "^2.2.5",
  70. "native-promise-only": "^0.8.0-a",
  71. "nodeunit": ">0.0.0",
  72. "nyc": "^2.1.0",
  73. "rsvp": "^3.0.18",
  74. "semver": "^4.3.6",
  75. "uglify-js": "~2.4.0",
  76. "xyz": "^0.5.0",
  77. "yargs": "~3.9.1"
  78. },
  79. "directories": {},
  80. "dist": {
  81. "shasum": "ec6a61ae56480c0c3cb241c95618e20892f9672a",
  82. "tarball": "https://registry.npmjs.org/async/-/async-1.5.2.tgz"
  83. },
  84. "files": [
  85. "lib",
  86. "dist/async.js",
  87. "dist/async.min.js"
  88. ],
  89. "gitHead": "9ab5c67b7cb3a4c3dad4a2d4552a2f6775545d6c",
  90. "homepage": "https://github.com/caolan/async#readme",
  91. "jam": {
  92. "main": "lib/async.js",
  93. "include": [
  94. "lib/async.js",
  95. "README.md",
  96. "LICENSE"
  97. ],
  98. "categories": [
  99. "Utilities"
  100. ]
  101. },
  102. "keywords": [
  103. "async",
  104. "callback",
  105. "utility",
  106. "module"
  107. ],
  108. "license": "MIT",
  109. "main": "lib/async.js",
  110. "maintainers": [
  111. {
  112. "name": "caolan",
  113. "email": "caolan.mcmahon@gmail.com"
  114. },
  115. {
  116. "name": "beaugunderson",
  117. "email": "beau@beaugunderson.com"
  118. },
  119. {
  120. "name": "aearly",
  121. "email": "alexander.early@gmail.com"
  122. },
  123. {
  124. "name": "megawac",
  125. "email": "megawac@gmail.com"
  126. }
  127. ],
  128. "name": "async",
  129. "optionalDependencies": {},
  130. "readme": "ERROR: No README data found!",
  131. "repository": {
  132. "type": "git",
  133. "url": "git+https://github.com/caolan/async.git"
  134. },
  135. "scripts": {
  136. "coverage": "nyc npm test && nyc report",
  137. "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
  138. "lint": "jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js",
  139. "mocha-browser-test": "karma start",
  140. "mocha-node-test": "mocha mocha_test/",
  141. "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
  142. "nodeunit-test": "nodeunit test/test-async.js",
  143. "test": "npm run-script lint && npm run nodeunit-test && npm run mocha-test"
  144. },
  145. "spm": {
  146. "main": "lib/async.js"
  147. },
  148. "version": "1.5.2",
  149. "volo": {
  150. "main": "lib/async.js",
  151. "ignore": [
  152. "**/.*",
  153. "node_modules",
  154. "bower_components",
  155. "test",
  156. "tests"
  157. ]
  158. }
  159. }