package.json 847 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. "scripts": {
  29. "test": "grunt test"
  30. },
  31. "devDependencies": {
  32. "pegjs": "~0.8.0",
  33. "grunt": "~0.4.0",
  34. "grunt-contrib-jshint": "~0.3.0",
  35. "grunt-execute": "~0.2.1",
  36. "amber-dev": "~0.1.1",
  37. "grunt-contrib-clean": "~0.5.0"
  38. }
  39. }