package.json 925 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@ambers/lang",
  3. "version": "0.24.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": "MIT",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://lolg.it/amber/amber.git"
  22. },
  23. "engines": {
  24. "node": ">=4.0.0"
  25. },
  26. "strings": {
  27. "buildParserBegin": "// jshint ignore:start\ndefine(['./boot'], function($boot) {\nvar $globals = $boot.globals;\n",
  28. "buildParserEnd": "});"
  29. },
  30. "scripts": {
  31. "build:parser": "pegjs --cache -o base/parser.js --format amd --dependency $boot:./boot base/parser.pegjs"
  32. },
  33. "devDependencies": {
  34. "pegjs": "^0.10.0"
  35. }
  36. }