-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.95 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
{
"name": "music-utils",
"version": "1.3.16",
"description": "music tools for my flac & mp3 collection",
"main": "",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "run-s clear tsc -- --declaration",
"clear": "rm -rf ./build ./build.ci ./test-data/copy ",
"format:check": "prettier --config ./.prettierrc --list-different 'src/**/*.ts'",
"format:fix": "pnpm run format:check -- --write",
"format:lint:fix": "pnpm run lint -- --fix && pnpm run format:fix",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"sync_test_data": "rsync -a ./test-data/raw/* ./test-data/copy",
"tsc": "tsc --project ./tsconfig.build.json",
"pretest": "run-s clear sync_test_data tsc",
"ci:tsc": "tsc --project ./tsconfig.ci.json",
"ci:pre": "run-s clear pretest ci:tsc",
"ci:tag:tracks": "run-s ci:pre && ./ci/tag-tracks/run.sh",
"ci:tag:zep1": "run-s ci:pre && ./ci/tag-album/run.zep1.sh",
"ci:tag:zep2": "run-s ci:pre && ./ci/tag-album/run.zep2.sh",
"ci:tag:acc": "run-s ci:pre && ./ci/tag-album/run.acc.sh",
"ci:prompt": "run-s ci:pre && node ./build.ci/ci/prompt/run.js",
"ci:run-all": "NO_PROMPT=TRUE run-s ci:tag:tracks ci:tag:zep1 ci:tag:zep2 ci:tag:acc ci:prompt",
"jest": "npx jest --runInBand --detectOpenHandles --colors --reporters=default",
"jest:ci": "npx jest --ci --runInBand --silent --colors --coverage",
"jest:clear": "pnpm run jest -- --clearCache && pnpm run jest",
"jest:watch": "pnpm run jest -- --watch",
"test": "run-s jest jest:ci ci:run-all",
"precommit": "run-s test lint format:check tsc build",
"update": "npx npm-check-updates -i -t minor && pnpm run post:update",
"update:majors": "npx npm-check-updates -i -t latest && pnpm run post:update",
"post:update": "rm -rfv node_modules && pnpm prune && pnpm i",
"prepare": "husky install"
},
"keywords": [
"music",
"flac",
"mp3"
],
"author": "hansogj@gmail.com",
"license": "UNLICENSED",
"dependencies": {
"@hansogj/array.utils": "2.4.0",
"@hansogj/maybe": "2.2.23",
"@types/prompts": "2.4.9",
"chalk": "4.1.2",
"command-line-args": "6.0.1",
"prompts": "2.4.2"
},
"devDependencies": {
"@types/command-line-args": "5.2.3",
"@types/jest": "29.5.14",
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint-config-airbnb-typescript": "18.0.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node-dev": "2.0.0",
"typescript": "5.7.3",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"graceful-fs": "4.2.11",
"husky": "^9.1.7",
"nodemon": "3.1.9",
"npm-run-all": "4.1.5",
"reflect-metadata": "0.2.2",
"winston": "3.17.0"
},
"volta": {
"node": "21.7.3"
}
}