package.json 780 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "amber",
  3. "version": "0.9.1",
  4. "description": "An implementation of the Smalltalk language that runs on top of the JS runtime.",
  5. "homepage": "http://amber-lang.net",
  6. "keywords": [ "javascript", "smalltalk", "language", "compiler", "web" ],
  7. "author": {
  8. "name": "Nicolas Petton",
  9. "email": "petton.nicolas@gmail.com",
  10. "url": "http://www.nicolas-petton.fr"
  11. },
  12. "license": {
  13. "type": "MIT"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/NicolasPetton/amber.git#0.9.1"
  18. },
  19. "files": [ "." ],
  20. "bin": {
  21. "amber": "./bin/amber",
  22. "amberc": "./bin/amberc",
  23. "ambers": "./bin/server"
  24. },
  25. "scripts": {
  26. "test": "./test/run_build.sh"
  27. }
  28. }