package.json 2.3 KB

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