package.json 936 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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_test_runner && node ./test/amber_test_runner.js"
  34. },
  35. "devDependencies": {
  36. "pegjs": "~0.7.0",
  37. "grunt": "~0.4.0",
  38. "grunt-contrib-jshint": "~0.3.0",
  39. "amdefine": "0.0.8"
  40. }
  41. }