-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"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"
},
"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": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-http-server": "",
"grunt-karma": "^2.0.0",
"grunt-ts": "^6.0.0-beta.3",
"http-server": "^0.9.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",
"tsify": "^3.0.0",
"tslint": "^5.0.0",
"typedoc": "^0.5.7",
"typescript": "^2.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}