123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {
- "name": "opensheetmusicdisplay",
- "version": "0.2.1",
- "description": "An open source JavaScript engine for displaying MusicXML based on VexFlow.",
- "main": "dist/src/OSMD/OSMD.js",
- "typings": "dist/src/OSMD/OSMD",
- "scripts": {
- "docs": "typedoc --mode file --out build/docs --module commonjs --target ES5 --name opensheetmusicdisplay ./src",
- "lint": "npm run jshint && npm run tslint",
- "jshint": "jshint . --exclude node_modules,dist,build,bin,demo",
- "test": "npm run lint && grunt test",
- "tslint": "tslint --type-check --project tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\"",
- "typedoc": "typedoc --out ./build/docs --name OpenSheetMusicDisplay --module commonjs --target ES5 --mode file ./src/**/*.ts",
- "postinstall": "rimraf typings",
- "prepublish": "grunt build:dist",
- "start": "http-server build/demo"
- },
- "pre-commit": [
- "lint"
- ],
- "files": [
- "dist",
- "AUTHORS",
- "CHANGELOG.md",
- "README.md",
- "karma.conf.js",
- "src",
- "external",
- "demo",
- "tsconfig.json",
- "tslint.json",
- "Gruntfile.js"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay"
- },
- "keywords": [
- "sheet",
- "music",
- "vexflow",
- "musicxml"
- ],
- "author": "PhonicScore",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/opensheetmusicdisplay/opensheetmusicdisplay/issues"
- },
- "homepage": "http://opensheetmusicdisplay.org",
- "dependencies": {
- "es6-promise": "^4.0.5",
- "jszip": "^3.0.0",
- "loglevel": "^1.4.1",
- "shortid": "^2.2.6",
- "typescript-collections": "^1.1.2",
- "vexflow": "^1.2.53"
- },
- "devDependencies": {
- "@types/chai": "^3.4.35",
- "@types/loglevel": "^1.4.29",
- "@types/mocha": "^2.2.40",
- "browserify": "^14.0.0",
- "chai": "^3.5.0",
- "cz-conventional-changelog": "^2.0.0",
- "grunt": "^1.0.1",
- "grunt-browserify": "^5.0.0",
- "grunt-contrib-clean": "^1.0.0",
- "grunt-contrib-copy": "^1.0.0",
- "grunt-contrib-uglify": "^3.0.0",
- "grunt-contrib-watch": "^1.0.0",
- "grunt-http-server": "",
- "grunt-karma": "^2.0.0",
- "grunt-ts": "^6.0.0-beta.3",
- "grunt-webpack": "^3.0.0",
- "http-server": "^0.10.0",
- "jshint": "^2.9.4",
- "karma": "^1.1.1",
- "karma-base64-to-js-preprocessor": "^0.0.1",
- "karma-chai": "^0.1.0",
- "karma-chrome-launcher": "^2.0.0",
- "karma-firefox-launcher": "^1.0.0",
- "karma-mocha": "^1.1.1",
- "karma-mocha-reporter": "^2.0.4",
- "karma-phantomjs-launcher": "^1.0.1",
- "karma-xml2js-preprocessor": "^0.0.3",
- "mocha": "^3.0.1",
- "phantomjs-prebuilt": "^2.1.8",
- "pre-commit": "^1.2.2",
- "rimraf": "^2.6.1",
- "ts-loader": "^2.0.3",
- "tsify": "^3.0.0",
- "tslint": "^5.0.0",
- "typedoc": "^0.8.0",
- "typescript": "^2.2.2",
- "uglifyjs-webpack-plugin": "^0.4.3",
- "webpack": "^2.5.1"
- },
- "config": {
- "commitizen": {
- "path": "./node_modules/cz-conventional-changelog"
- }
- }
- }
|