forked from valmisson/ytubes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "ytubes",
"version": "1.2.0",
"description": "Search for videos, playlists, channels, movies. live and musics on youtube without api key.",
"author": "Valmisson Grizorte",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/ && tsc --build",
"lint": "eslint src/**/*.{js,ts}",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md",
"deactivate-prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^16.11.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^8.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"lint-staged": "^11.2.3",
"rimraf": "^3.0.2",
"typescript": "^4.4.4",
"yorkie": "^2.0.0"
},
"deactivate-gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"eslint --fix"
]
},
"repository": "[email protected]:valmisson/ytubes.git",
"bugs": "https://github.com/valmisson/ytubes/issues",
"homepage": "https://github.com/valmisson/ytubes#readme",
"keywords": [
"youtube",
"search",
"yt",
"ytube",
"video",
"channel",
"music",
"playlist",
"scraper",
"crawler",
"youtube search",
"youtube video",
"youtube music",
"youtube api",
"youtube download",
"youtube without api",
"youtube scraper",
"typescript",
"javascript",
"node"
]
}