package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "name": "opensheetmusicdisplay",
  3. "version": "0.2.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. "docs": "typedoc --mode file --out build/docs --module commonjs --target ES5 --name opensheetmusicdisplay ./src",
  9. "lint": "npm run jshint && npm run tslint",
  10. "jshint": "jshint . --exclude node_modules,dist,build,bin,demo",
  11. "test": "npm run lint && grunt test",
  12. "tslint": "tslint --type-check --project tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\"",
  13. "typedoc": "typedoc --out ./build/docs --name OpenSheetMusicDisplay --module commonjs --target ES5 --mode file ./src/**/*.ts",
  14. "postinstall": "rimraf typings",
  15. "prepublish": "grunt build:dist",
  16. "start": "http-server build/demo"
  17. },
  18. "pre-commit": [
  19. "lint"
  20. ],
  21. "files": [
  22. "dist",
  23. "AUTHORS",
  24. "CHANGELOG.md",
  25. "README.md",
  26. "karma.conf.js",
  27. "src",
  28. "external",
  29. "demo",
  30. "tsconfig.json",
  31. "tslint.json",
  32. "Gruntfile.js"
  33. ],
  34. "repository": {
  35. "type": "git",
  36. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay"
  37. },
  38. "keywords": [
  39. "sheet",
  40. "music",
  41. "vexflow",
  42. "musicxml"
  43. ],
  44. "author": "PhonicScore",
  45. "license": "MIT",
  46. "bugs": {
  47. "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/issues"
  48. },
  49. "homepage": "http://opensheetmusicdisplay.org",
  50. "dependencies": {
  51. "es6-promise": "^4.0.5",
  52. "jszip": "^3.0.0",
  53. "loglevel": "^1.4.1",
  54. "shortid": "^2.2.6",
  55. "typescript-collections": "^1.1.2",
  56. "vexflow": "^1.2.53"
  57. },
  58. "devDependencies": {
  59. "@types/chai": "^3.4.35",
  60. "@types/loglevel": "^1.4.29",
  61. "@types/mocha": "^2.2.40",
  62. "browserify": "^14.0.0",
  63. "chai": "^3.5.0",
  64. "cz-conventional-changelog": "^2.0.0",
  65. "grunt": "^1.0.1",
  66. "grunt-browserify": "^5.0.0",
  67. "grunt-contrib-clean": "^1.0.0",
  68. "grunt-contrib-copy": "^1.0.0",
  69. "grunt-contrib-uglify": "^3.0.0",
  70. "grunt-contrib-watch": "^1.0.0",
  71. "grunt-http-server": "",
  72. "grunt-karma": "^2.0.0",
  73. "grunt-ts": "^6.0.0-beta.3",
  74. "grunt-webpack": "^3.0.0",
  75. "http-server": "^0.10.0",
  76. "jshint": "^2.9.4",
  77. "karma": "^1.1.1",
  78. "karma-base64-to-js-preprocessor": "^0.0.1",
  79. "karma-chai": "^0.1.0",
  80. "karma-chrome-launcher": "^2.0.0",
  81. "karma-firefox-launcher": "^1.0.0",
  82. "karma-mocha": "^1.1.1",
  83. "karma-mocha-reporter": "^2.0.4",
  84. "karma-phantomjs-launcher": "^1.0.1",
  85. "karma-xml2js-preprocessor": "^0.0.3",
  86. "mocha": "^3.0.1",
  87. "phantomjs-prebuilt": "^2.1.8",
  88. "pre-commit": "^1.2.2",
  89. "rimraf": "^2.6.1",
  90. "ts-loader": "^2.0.3",
  91. "tsify": "^3.0.0",
  92. "tslint": "^5.0.0",
  93. "typedoc": "^0.8.0",
  94. "typescript": "^2.2.2",
  95. "uglifyjs-webpack-plugin": "^0.4.3",
  96. "webpack": "^2.5.1"
  97. },
  98. "config": {
  99. "commitizen": {
  100. "path": "./node_modules/cz-conventional-changelog"
  101. }
  102. }
  103. }