No Description

bower.json 674B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "async",
  3. "description": "Higher-order functions and common patterns for asynchronous code",
  4. "version": "0.9.2",
  5. "main": "lib/async.js",
  6. "keywords": [
  7. "async",
  8. "callback",
  9. "utility",
  10. "module"
  11. ],
  12. "license": "MIT",
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/caolan/async.git"
  16. },
  17. "devDependencies": {
  18. "nodeunit": ">0.0.0",
  19. "uglify-js": "1.2.x",
  20. "nodelint": ">0.0.0",
  21. "lodash": ">=2.4.1"
  22. },
  23. "moduleType": [
  24. "amd",
  25. "globals",
  26. "node"
  27. ],
  28. "ignore": [
  29. "**/.*",
  30. "node_modules",
  31. "bower_components",
  32. "test",
  33. "tests"
  34. ],
  35. "authors": [
  36. "Caolan McMahon"
  37. ]
  38. }