-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
113 lines (113 loc) · 2.75 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
{
"name": "musicbrainz-api",
"version": "0.19.1",
"description": "MusicBrainz API client for reading and submitting metadata",
"exports": {
"import": "./lib/index.js",
"require": "./lib/default.cjs"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/default.cjs"
],
"type": "module",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"keywords": [
"MusicBrainz",
"metadata",
"meta",
"tag",
"tags",
"Picard",
"json",
"xml",
"web",
"service",
"submit",
"metabrainz",
"Cover Art Archive",
"coverartarchive",
"coverartarchive.org",
"album art",
"covers",
"download covers"
],
"license": "MIT",
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Borewit/musicbrainz-api.git"
},
"bugs": {
"url": "https://github.com/Borewit/musicbrainz-api/issues"
},
"dependencies": {
"debug": "^4.3.4",
"http-status-codes": "^2.1.4",
"json-stringify-safe": "^5.0.1",
"jsontoxml": "^1.0.1",
"rate-limit-threshold": "^0.2.0",
"spark-md5": "^3.0.2",
"tough-cookie": "^5.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/chai": "^4.3.0",
"@types/jsontoxml": "^1.0.5",
"@types/mocha": "^10.0.4",
"@types/node": "^22.5.0",
"@types/sinon": "^17.0.3",
"@types/source-map-support": "^0",
"@types/spark-md5": "^3",
"@types/tough-cookie": "^4.0.5",
"@types/uuid": "^10.0.0",
"c8": "^10.1.2",
"chai": "^5.1.1",
"del-cli": "^5.1.0",
"mocha": "^10.7.3",
"remark-cli": "^12.0.0",
"remark-preset-lint-recommended": "^7.0.0",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"scripts": {
"clean": "del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map'",
"compile-lib": "tsc -p lib",
"compile-test": "tsc -p test",
"compile": "yarn run compile-lib && yarn run compile-test",
"lint-md": "remark -u preset-lint-recommended .",
"lint-ts": "biome check",
"lint": "yarn run lint-md && yarn run lint-ts",
"test": "mocha",
"build": "yarn run clean && yarn run compile",
"start": "yarn run compile && yarn run lint && yarn run cover-test",
"test-coverage": "c8 yarn run test",
"send-codacy": "c8 report --reporter=text-lcov | codacy-coverage"
},
"nyc": {
"exclude": [
"test/**/*.ts"
],
"extension": [
".ts"
],
"sourceMap": true,
"instrument": true,
"reporter": [
"lcov",
"text"
],
"report-dir": "coverage"
},
"packageManager": "[email protected]"
}