package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "scripts": {
  28. "build:cli": "grunt build:cli",
  29. "test": "npm run test:sunit && npm run test:e2e",
  30. "test:sunit": "grunt test",
  31. "test:e2e": "(cd cli && npm test)"
  32. },
  33. "devDependencies": {
  34. "amd-config-builder": "^0.3.1",
  35. "es6-promise": "^4.2.4",
  36. "grunt": "^1.0.3",
  37. "grunt-contrib-clean": "^1.1.0",
  38. "grunt-contrib-jshint": "^1.1.0",
  39. "grunt-contrib-requirejs": "^1.0.0",
  40. "grunt-exec": "^3.0.0",
  41. "requirejs": "^2.3.5"
  42. }
  43. }