-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
98 lines (98 loc) · 3.18 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": "osme",
"version": "0.1.0",
"description": "An open source JavaScript engine for generating Music Sheets and export MusicXML files.",
"main": "build/osme.min.js",
"typings": "build/dist/src/",
"scripts": {
"docs": "typedoc --out ./build/docs --name OSME --module commonjs --target ES5 --ignoreCompilerErrors --mode file ./src",
"eslint": "eslint .",
"tslint": "tslint --project tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "npm-run-all eslint tslint",
"test": "karma start --single-run --no-auto-watch",
"test:watch": "karma start --no-single-run --auto-watch --browsers ChromeNoSecurity",
"prepare": "npm run build",
"build": "npm-run-all lint build:webpack",
"build:doc": "cross-env STATIC_FILES_SUBFOLDER=sheets npm run build",
"build:webpack": "webpack --progress --colors --config osme_webpack.prod.js",
"build:webpack-dev": "webpack --progress --colors --config osme_webpack.dev.js",
"build:webpack-sourcemap": "webpack --progress --colors --config webpack.sourcemap.js",
"start": "webpack-dev-server --progress --colors --config osme_webpack.dev.js",
"fix-memory-limit": "cross-env NODE_OPTIONS=--max_old_space_size=4096"
},
"pre-commit": [
"lint"
],
"files": [
"build/dist/src",
"build/osme.min.js",
"AUTHORS",
"CHANGELOG.md",
"README.md",
"external"
],
"repository": {
"type": "git",
"url": "https://github.com/opensheetmusicdisplay/osme"
},
"keywords": [
"sheet",
"music",
"vexflow",
"musicxml"
],
"author": "PhonicScore",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/opensheetmusicdisplay/osme/issues"
},
"homepage": "http://opensheetmusicdisplay.org",
"dependencies": {
"opensheetmusicdisplay": "github:opensheetmusicdisplay/opensheetmusicdisplay#feature/fix-module-exports",
"xmlbuilder": "^13.0.2"
},
"devDependencies": {
"@types/chai": "^4.0.3",
"@types/mocha": "^5.2.6",
"@types/node": "^12.7.2",
"chai": "^4.1.0",
"clean-webpack-plugin": "^1.0.1",
"cross-env": "^6.0.2",
"cz-conventional-changelog": "^3.0.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.4.1",
"karma": "^4.1.0",
"karma-base64-to-js-preprocessor": "^0.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-webpack": "^4.0.2",
"karma-xml2js-preprocessor": "^0.0.3",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.2",
"pre-commit": "^1.2.2",
"ts-loader": "^4.1.0",
"tslint": "^5.14.0",
"tslint-loader": "^3.5.3",
"typedoc": "^0.15.0",
"typescript": "^2.6.1",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.1.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}