package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "amber",
  3. "version": "0.13.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. "bin": {
  29. "amber": "./cli/support/amber-cli.js",
  30. "amberc": "./cli/support/amberc-cli.js"
  31. },
  32. "scripts": {
  33. "test": "grunt amberc:amber_cli && ./bin/amber tests"
  34. },
  35. "dependencies": {
  36. "es6-promise": "~0.1.1",
  37. "amdefine": "0.0.8",
  38. "grunt-init-amber": "git://github.com/amber-smalltalk/grunt-init-amber.git",
  39. "grunt-init": "~0.3.1"
  40. },
  41. "devDependencies": {
  42. "pegjs": "~0.8.0",
  43. "grunt": "~0.4.0",
  44. "grunt-contrib-jshint": "~0.3.0"
  45. }
  46. }