-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "js",
"version": "1.0.0",
"description": "Music library management tools",
"main": "index.js",
"license": "MIT",
"author": "Andrey Ponomarev",
"type": "module",
"scripts": {
"validatelib": "npx tsx ./src/validate-lib",
"buildcover": "npx tsx ./src/build-cover",
"extractcovers": "npx tsx ./src/extract-covers",
"extracttracklist": "npx tsx ./src/m3u-to-tracklist",
"test:unit": "jest --verbose --detectOpenHandles --watchAll ./src",
"test:integration": "jest --verbose --detectOpenHandles --watchAll ./__integration-tests__ --runInBand",
"test:coverage": "jest --coverage",
"clearjest": "jest --clearCache"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"image-size": "^1.1.1",
"jest": "^29.7.0",
"jimp": "^1.6.0",
"music-metadata": "7.14.0",
"ts-jest": "^29.2.5",
"utfstring": "^3.1.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jimp": "^0.2.28",
"@types/node": "^22.7.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}