package.json 2.8 KB

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