bower.json 682 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "api-check",
  3. "homepage": "https://github.com/kentcdodds/apiCheck.js",
  4. "authors": [
  5. "Kent C. Dodds <kent@doddsfamily.us> (http://kent.doddsfamily.us)"
  6. ],
  7. "description": "Validate the api to your functions to help people use them correctly. This is pretty much React's propTypes without React.",
  8. "main": "dist/api-check.js",
  9. "moduleType": [
  10. "amd",
  11. "globals",
  12. "node"
  13. ],
  14. "keywords": [
  15. "javascript",
  16. "validation",
  17. "api",
  18. "function"
  19. ],
  20. "license": "MIT",
  21. "ignore": [
  22. ".idea",
  23. "other",
  24. ".editorconfig",
  25. ".travis.yml",
  26. ".eslintrc",
  27. "src",
  28. "webpack.config.js",
  29. "webpack.config.minify.js"
  30. ]
  31. }