bower.json 747 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "/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",
  31. "amber-contrib-legacy": "^0.2.0"
  32. },
  33. "devDependencies": {
  34. "amber-ide-starter-dialog": "^0.1.0",
  35. "helios": "^0.4.3"
  36. },
  37. "resolutions": {
  38. "amber": "^0.14.13",
  39. "helios": "^0.4.3"
  40. }
  41. }