forked from CoderLine/alphaTab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.86 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
{
"name": "@coderline/alphatab",
"version": "1.3.0",
"description": "alphaTab is a music notation and guitar tablature rendering library",
"keywords": [
"guitar",
"music-notation",
"music-sheet",
"html5",
"svg",
"guitar-tablature"
],
"homepage": "https://alphatab.net",
"bugs": {
"url": "https://github.com/coderline/alphaTab/issues"
},
"author": "Daniel Kuschny",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/coderline/alphaTab"
},
"main": "dist/alphaTab.js",
"typings": "dist/alphaTab.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --project tsconfig.build.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"generate-typescript": "rimraf src/generated && ts-node --project tsconfig.build-csharp.json src.compiler/typescript/AlphaTabGenerator.ts --project tsconfig.build-csharp.json",
"generate-csharp": "npm run generate-typescript && ts-node --project tsconfig.build-csharp.json src.compiler/csharp/CSharpTranspiler.ts --project tsconfig.build-csharp.json",
"generate-kotlin": "npm run generate-typescript && ts-node --project tsconfig.build-kotlin.json src.compiler/kotlin/KotlinTranspiler.ts --project tsconfig.build-kotlin.json",
"build": "npm run generate-typescript && tsc --project tsconfig.build.json && rollup -c rollup.config.js",
"build-ci": "npm run clean && npm run build && npm pack",
"build-csharp": "npm run generate-csharp && cd src.csharp && dotnet build -c Release",
"build-csharp-ci": "npm run clean && npm run generate-csharp && cd src.csharp && dotnet build -c Release",
"build-kotlin": "npm run generate-kotlin && cd src.kotlin/alphaTab && gradlew assemble",
"build-kotlin-ci": "npm run clean && npm run generate-kotlin && cd src.kotlin/alphaTab && gradlew assemble",
"start": "node scripts/setup-playground.js && npm run build && concurrently --kill-others \"tsc --project tsconfig.build.json --watch\" \"rollup -c rollup.config.js -w\"",
"test": "npm run generate-typescript && tsc --project tsconfig.json && concurrently --kill-others \"tsc --project tsconfig.json -w\" \"karma start karma.conf.js --browsers Chrome --no-single-run --reporters spec,kjhtml\"",
"test-ci": "npm run generate-typescript && tsc --project tsconfig.json && karma start karma.conf.js --browsers ChromeHeadless --single-run --reporters spec",
"test-csharp": "cd src.csharp && dotnet test",
"test-csharp-ci": "cd src.csharp && dotnet test",
"test-kotlin": "cd src.kotlin/alphaTab && gradlew jvmTest",
"test-kotlin-ci": "cd src.kotlin/alphaTab && gradlew jvmTest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@types/css-font-loading-module": "0.0.4",
"@types/jasmine": "^3.7.1",
"@types/resize-observer-browser": "^0.1.5",
"concurrently": "^6.1.0",
"cors": "^2.8.5",
"fs-extra": "^10.0.0",
"git-branch": "^2.0.1",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-express-http-server": "0.0.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.6.0",
"karma-rollup-preprocessor": "^7.0.7",
"karma-spec-reporter": "0.0.32",
"lodash": "^4.17.21",
"multer": "^1.4.2",
"rimraf": "^3.0.2",
"rollup": "^2.47.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-license": "^2.3.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.7.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4"
},
"files": [
"/dist/alphaTab.js",
"/dist/alphaTab.min.js",
"/dist/alphaTab.d.ts",
"/dist/font/Bravura.*",
"/dist/font/*.txt",
"/dist/soundfont/*",
"LICENSE.header"
]
}