package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "codemirror",
  3. "version": "5.23.0",
  4. "main": "lib/codemirror.js",
  5. "description": "Full-featured in-browser code editor",
  6. "license": "MIT",
  7. "directories": {
  8. "lib": "./lib"
  9. },
  10. "scripts": {
  11. "build": "rollup -c",
  12. "watch": "rollup -w -c",
  13. "prepublish": "npm run-script build",
  14. "test": "node ./test/run.js",
  15. "lint": "bin/lint"
  16. },
  17. "devDependencies": {
  18. "blint": "^0.5.1",
  19. "node-static": "0.6.0",
  20. "phantomjs-prebuilt": "^2.1.12",
  21. "rollup": "^0.34.10",
  22. "rollup-plugin-buble": "^0.15.0",
  23. "rollup-watch": "^2.5.0"
  24. },
  25. "bugs": "http://github.com/codemirror/CodeMirror/issues",
  26. "keywords": [
  27. "JavaScript",
  28. "CodeMirror",
  29. "Editor"
  30. ],
  31. "homepage": "http://codemirror.net",
  32. "maintainers": [
  33. {
  34. "name": "Marijn Haverbeke",
  35. "email": "marijnh@gmail.com",
  36. "web": "http://marijnhaverbeke.nl"
  37. }
  38. ],
  39. "repository": {
  40. "type": "git",
  41. "url": "https://github.com/codemirror/CodeMirror.git"
  42. },
  43. "jspm": {
  44. "directories": {},
  45. "dependencies": {},
  46. "devDependencies": {}
  47. }
  48. }