bower.json 474 B

12345678910111213141516171819202122
  1. {
  2. "name": "denodeify",
  3. "main": "index.js",
  4. "homepage": "https://github.com/matthew-andrews/denodeify",
  5. "authors": [
  6. "Matthew Andrews <matt@mattandre.ws>"
  7. ],
  8. "description": "Tool to turn functions with Node-style callback APIs into functions that return Promises.",
  9. "keywords": [
  10. "denodeify",
  11. "Promise",
  12. "node"
  13. ],
  14. "license": "MIT",
  15. "ignore": [
  16. "**/.*",
  17. "node_modules",
  18. "bower_components",
  19. "test",
  20. ".editorconfig"
  21. ]
  22. }