package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "ace",
  3. "description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
  4. "version": "1.2.0",
  5. "homepage": "http://github.com/ajaxorg/ace",
  6. "engines": {"node": ">= 0.6.0"},
  7. "author": "Fabian Jakobs <fabian@c9.io>",
  8. "main": "lib/ace",
  9. "repository": {
  10. "type": "git",
  11. "url": "http://github.com/ajaxorg/ace.git"
  12. },
  13. "dependencies": {
  14. "mime": "1.2.x"
  15. },
  16. "devDependencies": {
  17. "asyncjs": "0.0.x",
  18. "node-jsdom": "3.1.5",
  19. "amd-loader": "~0.0.4",
  20. "dryice": "0.4.11",
  21. "architect-build": "https://github.com/c9/architect-build/tarball/a3bad51808"
  22. },
  23. "mappings": {
  24. "ace": "."
  25. },
  26. "licenses": [{
  27. "type": "BSD New",
  28. "url": "http://opensource.org/licenses/BSD-3-Clause"
  29. }],
  30. "directories": {
  31. "lib": "lib/ace"
  32. },
  33. "scripts": {
  34. "start": "node static.js",
  35. "test": "node lib/ace/test/all.js"
  36. }
  37. }