package.json 2.3 KB

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