bower.json 723 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "trysmalltalk",
  3. "description": "Tutorial to learn Smalltalk",
  4. "version": "0.1.1",
  5. "ignore": [
  6. "**/.*",
  7. "node_modules",
  8. "bower_components",
  9. "/test_runner.js",
  10. "test",
  11. "tests"
  12. ],
  13. "authors": [
  14. {
  15. "name": "hhzl",
  16. "email": "hannes.hirzel@gmail.com"
  17. }
  18. ],
  19. "homepage": "https://github.com/amber-smalltalk/trysmalltalk",
  20. "keywords": [
  21. "Amber",
  22. "Smalltalk"
  23. ],
  24. "license": [
  25. "MIT"
  26. ],
  27. "private": true,
  28. "dependencies": {
  29. "amber": "^0.14.0"
  30. },
  31. "devDependencies": {
  32. "amber-ide-starter-dialog": "^0.1.0",
  33. "helios": "^0.3.0"
  34. }
  35. }