package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.2",
  5. "homepage": "http://github.com/ajaxorg/ace",
  6. "engines": {
  7. "node": ">= 0.6.0"
  8. },
  9. "author": "Fabian Jakobs <fabian@c9.io>",
  10. "main": "lib/ace",
  11. "repository": {
  12. "type": "git",
  13. "url": "http://github.com/ajaxorg/ace.git"
  14. },
  15. "dependencies": {
  16. "mime": "1.4.1"
  17. },
  18. "devDependencies": {
  19. "asyncjs": "0.0.x",
  20. "node-jsdom": "3.1.5",
  21. "amd-loader": "~0.0.4",
  22. "dryice": "0.4.11",
  23. "architect-build": "https://github.com/c9/architect-build/tarball/43a6fdeffe"
  24. },
  25. "mappings": {
  26. "ace": "."
  27. },
  28. "licenses": [
  29. {
  30. "type": "BSD New",
  31. "url": "http://opensource.org/licenses/BSD-3-Clause"
  32. }
  33. ],
  34. "directories": {
  35. "lib": "lib/ace"
  36. },
  37. "scripts": {
  38. "start": "node static.js",
  39. "test": "node lib/ace/test/all.js"
  40. }
  41. }