forked from Borewit/music-metadata
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
140 lines (140 loc) · 3.39 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "music-metadata",
"description": "Music metadata parser for Node.js, supporting virtual any audio and tag format.",
"version": "8.1.0",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Borewit"
},
"type": "module",
"exports": {
".": {
"node": "./lib/index.js",
"default": "./lib/core.js"
}
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"keywords": [
"music",
"metadata",
"meta",
"audio",
"tag",
"tags",
"duration",
"MusicBrainz",
"Discogs",
"Picard",
"ID3",
"ID3v1",
"ID3v2",
"m4a",
"m4b",
"mp3",
"mp4",
"Vorbis",
"ogg",
"flac",
"Matroska",
"WebM",
"EBML",
"asf",
"wma",
"wmv",
"ape",
"MonkeyAudio",
"aiff",
"wav",
"WavPack",
"Opus",
"speex",
"musepack",
"mpc",
"dsd",
"dsf",
"mpc",
"dff",
"dsdiff",
"aac",
"adts",
"length",
"chapter",
"info",
"parse",
"parser",
"bwf"
],
"scripts": {
"clean": "del-cli lib/**/*.js lib/**/*.js.map lib/**/*.d.ts src/**/*.d.ts test/**/*.js test/**/*.js.map test/**/*.js test/**/*.js.map doc-gen/**/*.js doc-gen/**/*.js.map",
"compile-src": "tsc -p lib",
"compile-test": "tsc -p test",
"compile-doc": "tsc -p doc-gen",
"compile": "npm run compile-src && npm run compile-test && npm run compile-doc",
"eslint": "eslint lib/**/*.ts --ignore-pattern lib/**/*.d.ts example/typescript/**/*.ts test/**/*.ts doc-gen/**/*.ts",
"lint-md": "remark -u preset-lint-recommended .",
"lint": "npm run lint-md && npm run eslint",
"test": "mocha",
"build": "npm run clean && npm run compile && npm run doc-gen",
"start": "npm-run-all compile lint cover-test",
"test-coverage": "c8 npm run test",
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage",
"doc-gen": "node doc-gen/gen.js"
},
"dependencies": {
"@tokenizer/token": "^0.3.0",
"content-type": "^1.0.4",
"debug": "^4.3.4",
"file-type": "^18.0.0",
"media-typer": "^1.1.0",
"strtok3": "^7.0.0",
"token-types": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/debug": "^4.1.7",
"@types/file-type": "^10.9.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"c8": "^7.12.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"del-cli": "5.0.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^43.0.2",
"mime": "^3.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"remark-cli": "^11.0.0",
"remark-preset-lint-recommended": "^6.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borewit/music-metadata.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Borewit/music-metadata/issues"
}
}