bower.json 685 B

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