package.json 937 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "amber",
  3. "version": "0.15.0-pre",
  4. "description": "An implementation of the Smalltalk language that runs on top of the JS runtime.",
  5. "homepage": "http://amber-lang.net",
  6. "keywords": [
  7. "javascript",
  8. "smalltalk",
  9. "language",
  10. "compiler",
  11. "web"
  12. ],
  13. "author": {
  14. "name": "Nicolas Petton",
  15. "email": "petton.nicolas@gmail.com",
  16. "url": "http://www.nicolas-petton.fr"
  17. },
  18. "license": {
  19. "type": "MIT"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/amber-smalltalk/amber.git"
  24. },
  25. "engines": {
  26. "node": ">=0.8.0"
  27. },
  28. "scripts": {
  29. "test": "grunt test && cd external && cd amber-cli && npm test && cd .. && cd .."
  30. },
  31. "devDependencies": {
  32. "amber-dev": "^0.3.0",
  33. "grunt": "^0.4.0",
  34. "grunt-contrib-clean": "^0.6.0",
  35. "grunt-contrib-jshint": "^0.10.0",
  36. "grunt-execute": "^0.2.1",
  37. "pegjs": "^0.8.0",
  38. "requirejs": "^2.1.15"
  39. }
  40. }