package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 npmtest",
  9. "postinstall": "typings install",
  10. "prepublish": "tsc"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay"
  15. },
  16. "keywords": [
  17. "sheet",
  18. "music",
  19. "vexflow",
  20. "musicxml"
  21. ],
  22. "author": "PhonicScore",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/issues"
  26. },
  27. "homepage": "http://opensheetmusicdisplay.org",
  28. "dependencies": {
  29. "es6-promise": "^3.2.1",
  30. "jszip": "^3.0.0",
  31. "typescript-collections": "^1.1.2",
  32. "vexflow": "^1.2.53"
  33. },
  34. "devDependencies": {
  35. "browserify": "^13.0.1",
  36. "chai": "^3.5.0",
  37. "grunt": "^1.0.1",
  38. "grunt-browserify": "^5.0.0",
  39. "grunt-contrib-clean": "^1.0.0",
  40. "grunt-contrib-jshint": "^1.0.0",
  41. "grunt-contrib-uglify": "^2.0.0",
  42. "grunt-contrib-watch": "^1.0.0",
  43. "grunt-karma": "^2.0.0",
  44. "grunt-tslint": "^3.1.1",
  45. "grunt-typings": "^0.1.5",
  46. "karma": "^1.1.1",
  47. "karma-base64-to-js-preprocessor": "0.0.1",
  48. "karma-chai": "^0.1.0",
  49. "karma-chrome-launcher": "^2.0.0",
  50. "karma-firefox-launcher": "^1.0.0",
  51. "karma-mocha": "^1.1.1",
  52. "karma-mocha-reporter": "^2.0.4",
  53. "karma-phantomjs-launcher": "^1.0.1",
  54. "karma-xml2js-preprocessor": "^0.0.3",
  55. "mocha": "^3.0.1",
  56. "phantomjs-prebuilt": "^2.1.8",
  57. "tsify": "^1.0.2",
  58. "tslint": "3.8.0",
  59. "typescript": "^1.8.10",
  60. "typings": "^1.3.1"
  61. }
  62. }