bower.json 709 B

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