-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.88 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": "youtube-likes-downloader",
"version": "10.0.1",
"description": "Download all liked videos from youtube",
"keywords": [
"youtube",
"download",
"likes"
],
"author": "Anatoliy Oblaukhov",
"homepage": "https://github.com/anmiles/youtube-likes-downloader",
"repository": "github:anmiles/youtube-likes-downloader",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm test -- --ci --coverage",
"test:watch": "npm test -- --watch",
"test:watch:coverage": "npm test -- --watch --coverage",
"test:report:coverage": "nyc report --nycrc-path ./coverage.config.js -t ./coverage --report-dir ./coverage",
"start": "node ./dist/index.js",
"check": "node ./dist/check.js",
"update": "node ./dist/update.js",
"create": "node ./dist/create.js",
"login": "node ./dist/login.js"
},
"dependencies": {
"@anmiles/google-api-wrapper": "^18.0.2",
"@anmiles/logger": "^7.0.2",
"@anmiles/prototypes": "^10.0.4",
"execa": "^5.1.1",
"googleapis": "^130.0.0"
},
"devDependencies": {
"@anmiles/eslint-config": "^7.1.1",
"@anmiles/jest-extensions": "^5.0.3",
"@anmiles/tsconfig": "^3.0.1",
"@stylistic/eslint-plugin": "^1.7.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-align-assignments": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsonc": "^2.14.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}