package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "amber",
  3. "version": "0.15.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": [
  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#0.15.1"
  24. },
  25. "engines": {
  26. "node": "0.10.x || 0.12.x || >=4.0.0"
  27. },
  28. "scripts": {
  29. "build:parser:begin": "node -e \"process.stdout.write('define([\\'./boot\\'], function($boot) {\\nvar $globals = $boot.globals, nil = $boot.nil;\\n');\"",
  30. "build:parser": "(npm run -s build:parser:begin && pegjs --cache --export-var $globals.SmalltalkParser < support/parser.pegjs && npm run -s build:parser:end) > support/parser.js",
  31. "build:parser:end": "node -e \"process.stdout.write('});');\"",
  32. "test": "npm run test:sunit && npm run test:e2e",
  33. "test:sunit": "grunt test",
  34. "test:e2e": "(cd external && cd amber-cli && npm test)"
  35. },
  36. "devDependencies": {
  37. "amber-compat-es2015": "^0.1.4",
  38. "grunt": "^0.4.0",
  39. "grunt-contrib-clean": "^0.7.0",
  40. "grunt-contrib-jshint": "^0.11.0",
  41. "grunt-contrib-requirejs": "^0.4.4",
  42. "grunt-execute": "^0.2.1",
  43. "pegjs": "^0.9.0",
  44. "requirejs": "^2.1.15"
  45. }
  46. }