-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.77 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
{
"name": "ireal-musicxml",
"version": "2.0.4",
"description": "iReal Pro to MusicXML converter.",
"author": "Karim Ratib <[email protected]> (https://github.com/infojunkie)",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/infojunkie/ireal-musicxml"
},
"homepage": "https://github.com/infojunkie/ireal-musicxml",
"type": "module",
"types": "./build/ireal-musicxml.d.ts",
"files": [
"LICENSE.txt",
"build/*",
"src/*"
],
"bin": {
"ireal-musicxml": "./src/cli/cli.js"
},
"exports": {
"import": "./build/ireal-musicxml.js",
"require": "./build/ireal-musicxml.cjs"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:d.ts",
"build:d.ts": "cp src/types/* build/",
"build:esm": "esbuild src/lib/index.js --bundle --format=esm --minify --sourcemap --outfile=build/ireal-musicxml.js",
"build:cjs": "esbuild src/lib/index.js --bundle --platform=node --packages=external --minify --sourcemap --outfile=build/ireal-musicxml.cjs",
"test": "npm run build && npm run test:lint && npm run test:spec && npm run test:ts",
"test:spec": "node --test --test-name-pattern=\"${TEST:-.*}\"",
"test:ts": "node --test --loader=ts-node/esm --require ts-node/register test/*.spec.ts",
"test:lint": "eslint src --fix"
},
"devDependencies": {
"@types/node": "^22.7.7",
"@xmldom/xmldom": "^0.8.0",
"esbuild": "0.24.0",
"eslint": "^9.13.0",
"resolve": "^1.22.8",
"sanitize-filename": "^1.6.3",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"validate-with-xmllint": "^1.2.0",
"xpath.js": "^1.1.0"
},
"dependencies": {
"chord-symbol": "^3.0.0",
"fast-diff": "^1.2.0",
"jstoxml": "^2.0.6",
"promise": "^8.1.0"
}
}