package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@ambers/development",
  3. "version": "0.23.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. "private": true,
  24. "engines": {
  25. "node": ">=4.0.0"
  26. },
  27. "strings": {
  28. "buildParserBegin": "// jshint ignore:start\ndefine(['./boot'], function($boot) {\nvar $globals = $boot.globals;\n",
  29. "buildParserEnd": "});"
  30. },
  31. "scripts": {
  32. "echos": "node -e \"process.stdout.write(require('./package.json').strings[process.argv[1]])\"",
  33. "build:parser": "(npm run -s echos buildParserBegin && pegjs --cache --export-var \"$\"globals.SmalltalkParser < lang/support/parser.pegjs && npm run -s echos buildParserEnd) > lang/support/parser.js",
  34. "test": "npm run test:sunit && npm run test:e2e",
  35. "test:sunit": "grunt test",
  36. "test:e2e": "(cd cli && npm test)"
  37. },
  38. "devDependencies": {
  39. "amber-compat-es2015": "^0.1.4",
  40. "grunt": "1.0.1",
  41. "grunt-contrib-clean": "^1.1.0",
  42. "grunt-contrib-jshint": "^1.1.0",
  43. "grunt-contrib-requirejs": "^1.0.0",
  44. "grunt-exec": "^2.0.0",
  45. "pegjs": "^0.9.0",
  46. "requirejs": "^2.1.15"
  47. }
  48. }