bower.json 794 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "ambertextinputexample",
  3. "description": "Shows how to work with a text field.",
  4. "version": "0.1.0",
  5. "ignore": [
  6. "**/.*",
  7. "node_modules",
  8. "bower_components",
  9. "/*.js",
  10. "/*.html",
  11. "test",
  12. "tests"
  13. ],
  14. "authors": [
  15. {
  16. "name": "HannesHirzel",
  17. "email": "hannes.hirzel@gmail.com"
  18. }
  19. ],
  20. "homepage": "https://github.com/amber-smalltalk/amber-examples",
  21. "keywords": [
  22. "Amber",
  23. "Smalltalk"
  24. ],
  25. "license": [
  26. "MIT"
  27. ],
  28. "private": false,
  29. "dependencies": {
  30. "amber": "^0.14.1"
  31. },
  32. "devDependencies": {
  33. "amber-ide-starter-dialog": "^0.1.0",
  34. "amber-attic": "^0.1.0",
  35. "helios": "^0.3.0"
  36. }
  37. }