package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "opensheetmusicdisplay",
  3. "version": "0.1.0",
  4. "description": "An open source JavaScript engine for displaying MusicXML based on VexFlow.",
  5. "main": "dist/src/OSMD/OSMD.js",
  6. "typings": "dist/src/OSMD/OSMD",
  7. "scripts": {
  8. "docs": "typedoc --mode file --out build/docs --module commonjs --target ES5 --name opensheetmusicdisplay ./src",
  9. "test": "grunt test",
  10. "postinstall": "grunt typings",
  11. "prepublish": "grunt build:dist"
  12. },
  13. "files": [
  14. "dist",
  15. "AUTHORS",
  16. "CHANGELOG.md",
  17. "README.md",
  18. "karma.conf.js",
  19. "src",
  20. "test",
  21. "external",
  22. "demo",
  23. "tsconfig",
  24. "tslint.json",
  25. "typings.json",
  26. "Gruntfile.js"
  27. ],
  28. "repository": {
  29. "type": "git",
  30. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay"
  31. },
  32. "keywords": [
  33. "sheet",
  34. "music",
  35. "vexflow",
  36. "musicxml"
  37. ],
  38. "author": "PhonicScore",
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/issues"
  42. },
  43. "homepage": "http://opensheetmusicdisplay.org",
  44. "dependencies": {
  45. "es6-promise": "^4.0.5",
  46. "jszip": "^3.0.0",
  47. "loglevel": "^1.4.1",
  48. "shortid": "^2.2.6",
  49. "typescript-collections": "^1.1.2",
  50. "vexflow": "^1.2.53"
  51. },
  52. "devDependencies": {
  53. "browserify": "^14.0.0",
  54. "chai": "^3.5.0",
  55. "grunt": "^1.0.1",
  56. "grunt-browserify": "^5.0.0",
  57. "grunt-contrib-clean": "^1.0.0",
  58. "grunt-contrib-copy": "^1.0.0",
  59. "grunt-contrib-jshint": "^1.0.0",
  60. "grunt-contrib-uglify": "^2.0.0",
  61. "grunt-contrib-watch": "^1.0.0",
  62. "grunt-http-server": "",
  63. "grunt-karma": "^2.0.0",
  64. "grunt-ts": "^6.0.0-beta.3",
  65. "grunt-tslint": "^4.0.0",
  66. "grunt-typings": "^0.1.5",
  67. "http-server": "^0.9.0",
  68. "karma": "^1.1.1",
  69. "karma-base64-to-js-preprocessor": "^0.0.1",
  70. "karma-chai": "^0.1.0",
  71. "karma-chrome-launcher": "^2.0.0",
  72. "karma-firefox-launcher": "^1.0.0",
  73. "karma-mocha": "^1.1.1",
  74. "karma-mocha-reporter": "^2.0.4",
  75. "karma-phantomjs-launcher": "^1.0.1",
  76. "karma-xml2js-preprocessor": "^0.0.3",
  77. "mocha": "^3.0.1",
  78. "phantomjs-prebuilt": "^2.1.8",
  79. "tsify": "^3.0.0",
  80. "tslint": "^4.3.1",
  81. "typedoc": "^0.5.7",
  82. "typescript": "^2.2.1",
  83. "typings": "^2.0.0"
  84. }
  85. }