forked from microlinkhq/youtube-dl-exec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
177 lines (177 loc) · 4.2 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "youtube-dl-exec",
"description": "A simple Node.js wrapper for youtube-dl",
"homepage": "https://nicedoc.io/microlinkhq/youtube-dl-exec",
"version": "2.4.6",
"main": "src/index.js",
"author": {
"email": "[email protected]",
"name": "microlink.io",
"url": "https://microlink.io"
},
"contributors": [
{
"name": "Kiko Beats",
"email": "[email protected]"
},
{
"name": "Hazmi35",
"email": "[email protected]"
},
{
"name": "EndChapter",
"email": "[email protected]"
},
{
"name": "Skick",
"email": "[email protected]"
},
{
"name": "Felix Kaiser",
"email": "[email protected]"
},
{
"name": "Samu698",
"email": "[email protected]"
},
{
"name": "Marinos33",
"email": "[email protected]"
},
{
"name": "SozrK",
"email": "[email protected]"
},
{
"name": "Philipp Fruck",
"email": "[email protected]"
},
{
"name": "DjesonPV",
"email": "[email protected]"
},
{
"name": "Onwuka Gideon",
"email": "[email protected]"
},
{
"name": "Indian Ocean Roleplay",
"email": "[email protected]"
},
{
"name": "John-Michael Burke",
"email": "[email protected]"
},
{
"name": "Jeff Jassky",
"email": "[email protected]"
},
{
"name": "Jiayang",
"email": "[email protected]"
},
{
"name": "Michael Kuenzli",
"email": "[email protected]"
},
{
"name": "Navid",
"email": "[email protected]"
},
{
"name": "Ben Torkington",
"email": "[email protected]"
},
{
"name": "Vikas Kapadiya",
"email": "[email protected]"
},
{
"name": "William Kang",
"email": "[email protected]"
},
{
"name": "Zechariah",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/microlinkhq/youtube-dl-exec.git"
},
"bugs": {
"url": "https://github.com/microlinkhq/youtube-dl-exec/issues"
},
"keywords": [
"binary",
"nodejs",
"youtube-dl",
"youtube-dl-wrapper",
"youtube-downloader"
],
"dependencies": {
"bin-version-check": "~5.1.0",
"dargs": "~7.0.0",
"execa": "~5.1.0",
"is-unix": "~2.0.1",
"simple-get": "~4.0.1"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ava": "latest",
"c8": "latest",
"ci-publish": "latest",
"conventional-github-releaser": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"prettier-standard": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">= 14"
},
"files": [
"scripts",
"src"
],
"scripts": {
"clean": "rm -rf node_modules",
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard",
"postinstall": "node scripts/postinstall.js",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
"preinstall": "node scripts/preinstall.mjs",
"prerelease": "npm run update:check",
"pretest": "npm run lint",
"release": "standard-version -a",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"test": "c8 ava",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nano-staged": {
"*.js,!*.min.js,": [
"prettier-standard"
],
"package.json": [
"finepack"
]
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit",
"pre-commit": "npx nano-staged"
}
}