-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "lastfm-love-aggregator",
"version": "0.1.1",
"description": "Collects loved music and cleans up the metadata using MusicBrainz API.",
"exports": "./index.js",
"type": "module",
"bin": {
"lastfm-love-aggregator": "./index.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"snap": "node --experimental-vm-modules ./node_modules/.bin/jest --updateSnapshot",
"updateYoutubeDL": "./node_modules/youtube-dl/bin/youtube-dl -U",
"ci": "npm run updateYoutubeDL && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maxattax97/lastfm-love-aggregator.git"
},
"keywords": [
"lastfm",
"music",
"loved",
"musicbrainz",
"metadata"
],
"author": "Max O'Cull",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Maxattax97/lastfm-love-aggregator/issues"
},
"homepage": "https://github.com/Maxattax97/lastfm-love-aggregator#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"del": "^5.1.0",
"dot-prop": "^5.2.0",
"ffmetadata": "^1.6.0",
"fpcalc": "^1.3.0",
"fs-extra": "^9.0.1",
"got": "^12.6.1",
"lodash": "^4.17.21",
"m3u8stream": "^0.7.1",
"moment": "^2.29.4",
"p-queue": "^7.3.4",
"tempy": "^0.5.0",
"winston": "^3.3.3",
"yargs": "^17.7.2",
"youtube-dl": "^3.0.2"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"jest": "^29.6.2"
}
}