package.json 2.1 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. "test": "grunt test",
  9. "postinstall": "grunt typings",
  10. "prepublish": "grunt build:dist"
  11. },
  12. "files": [
  13. "dist",
  14. "AUTHORS",
  15. "CHANGELOG.md",
  16. "README.md",
  17. "karma.conf.js",
  18. "src",
  19. "test",
  20. "external",
  21. "demo",
  22. "tsconfig",
  23. "tslint.json",
  24. "typings.json",
  25. "Gruntfile.js"
  26. ],
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay"
  30. },
  31. "keywords": [
  32. "sheet",
  33. "music",
  34. "vexflow",
  35. "musicxml"
  36. ],
  37. "author": "PhonicScore",
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/issues"
  41. },
  42. "homepage": "http://opensheetmusicdisplay.org",
  43. "dependencies": {
  44. "es6-promise": "^3.2.1",
  45. "jszip": "^3.0.0",
  46. "loglevel": "^1.4.1",
  47. "shortid": "^2.2.6",
  48. "typescript-collections": "^1.1.2",
  49. "vexflow": "^1.2.53"
  50. },
  51. "devDependencies": {
  52. "browserify": "^13.0.1",
  53. "chai": "^3.5.0",
  54. "grunt": "^1.0.1",
  55. "grunt-browserify": "^5.0.0",
  56. "grunt-contrib-clean": "^1.0.0",
  57. "grunt-contrib-copy": "^1.0.0",
  58. "grunt-contrib-jshint": "^1.0.0",
  59. "grunt-contrib-uglify": "^2.0.0",
  60. "grunt-contrib-watch": "^1.0.0",
  61. "grunt-http-server": "",
  62. "grunt-karma": "^2.0.0",
  63. "grunt-ts": "^6.0.0-beta.3",
  64. "grunt-tslint": "^3.1.1",
  65. "grunt-typedoc": "^0.2.4",
  66. "grunt-typings": "^0.1.5",
  67. "http-server": "",
  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": "^1.0.2",
  80. "tslint": "3.8.0",
  81. "typedoc": "^0.4.4",
  82. "typescript": "^1.8.10",
  83. "typings": "^1.3.1"
  84. }
  85. }