package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "opensheetmusicdisplay",
  3. "version": "0.0.1-alpha.1",
  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. "karma.conf.js",
  16. "src",
  17. "test",
  18. "external",
  19. "demo",
  20. "tsconfig",
  21. "tslint.json",
  22. "typings.json",
  23. "Gruntfile.js"
  24. ],
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay"
  28. },
  29. "keywords": [
  30. "sheet",
  31. "music",
  32. "vexflow",
  33. "musicxml"
  34. ],
  35. "author": "PhonicScore",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/issues"
  39. },
  40. "homepage": "http://opensheetmusicdisplay.org",
  41. "dependencies": {
  42. "es6-promise": "^3.2.1",
  43. "jszip": "^3.0.0",
  44. "shortid": "^2.2.6",
  45. "typescript-collections": "^1.1.2",
  46. "vexflow": "^1.2.53"
  47. },
  48. "devDependencies": {
  49. "browserify": "^13.0.1",
  50. "chai": "^3.5.0",
  51. "grunt": "^1.0.1",
  52. "grunt-browserify": "^5.0.0",
  53. "grunt-contrib-clean": "^1.0.0",
  54. "grunt-contrib-copy": "^1.0.0",
  55. "grunt-contrib-jshint": "^1.0.0",
  56. "grunt-contrib-uglify": "^2.0.0",
  57. "grunt-contrib-watch": "^1.0.0",
  58. "grunt-http-server": "",
  59. "grunt-karma": "^2.0.0",
  60. "grunt-ts": "^6.0.0-beta.3",
  61. "grunt-tslint": "^3.1.1",
  62. "grunt-typedoc": "^0.2.4",
  63. "grunt-typings": "^0.1.5",
  64. "http-server": "",
  65. "karma": "^1.1.1",
  66. "karma-base64-to-js-preprocessor": "0.0.1",
  67. "karma-chai": "^0.1.0",
  68. "karma-chrome-launcher": "^2.0.0",
  69. "karma-firefox-launcher": "^1.0.0",
  70. "karma-mocha": "^1.1.1",
  71. "karma-mocha-reporter": "^2.0.4",
  72. "karma-phantomjs-launcher": "^1.0.1",
  73. "karma-xml2js-preprocessor": "^0.0.3",
  74. "mocha": "^3.0.1",
  75. "phantomjs-prebuilt": "^2.1.8",
  76. "tsify": "^1.0.2",
  77. "tslint": "3.8.0",
  78. "typedoc": "^0.4.4",
  79. "typescript": "^1.8.10",
  80. "typings": "^1.3.1"
  81. }
  82. }