bower.json 723 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "async",
  3. "description": "Higher-order functions and common patterns for asynchronous code",
  4. "version": "1.0.0",
  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. "benchmark": "~1.0.0",
  19. "jshint": "~2.7.0",
  20. "lodash": ">=2.4.1",
  21. "mkdirp": "~0.5.1",
  22. "nodeunit": ">0.0.0",
  23. "uglify-js": "1.2.x"
  24. },
  25. "moduleType": [
  26. "amd",
  27. "globals",
  28. "node"
  29. ],
  30. "ignore": [
  31. "**/.*",
  32. "node_modules",
  33. "bower_components",
  34. "test",
  35. "tests"
  36. ],
  37. "authors": [
  38. "Caolan McMahon"
  39. ]
  40. }