-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.81 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
{
"name": "@corollarium/youtubedl-wrapper",
"version": "1.0.9",
"description": "Youtube-dl wrapper for nodejs",
"homepage": "https://github.com/Corollarium/youtubedl-wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/Corollarium/youtubedl-wrapper.git"
},
"author": "Corollarium (https://corollarium.com)",
"license": "MIT",
"engines": {
"node": ">= 10"
},
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "jest --config=./test/jest.config.js",
"coverage": "$npm_execpath test -- --coverage",
"download": "node scripts/download.js ./bin/youtube-dl",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint .",
"ci": "$npm_execpath download",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"prebuild": "$npm_execpath run docs",
"prerelease": "$npm_execpath run lint && $npm_execpath test",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"youtubedl",
"video"
],
"dependencies": {
"got": "11.5.2",
"which": "^2.0.2"
},
"devDependencies": {
"documentation": "11.0.1",
"eslint": "6.0.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"fs-extra": "^9.0.1",
"husky": "2.4.1",
"jest": "24.8.0",
"lint-staged": "8.2.1",
"open-cli": "5.0.0",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"standard-version": "6.0.1"
},
"bugs": {
"url": "https://github.com/Corollarium/youtubedl-wrapper/issues"
},
"directories": {
"test": "test"
}
}