-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
103 lines (103 loc) · 2.18 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
{
"name": "youtube-playlist-export",
"version": "1.1.0",
"description": "A command line app for exporting video data from a YouTube playlist to a JSON/CSV file",
"engines": {
"node": ">=12"
},
"keywords": [
"youtube",
"playlist",
"youtube api",
"youtube playlist",
"csv",
"json",
"download",
"cli",
"command line"
],
"homepage": "https://github.com/AnsonH/youtube-playlist-export#readme",
"bugs": {
"url": "https://github.com/AnsonH/youtube-playlist-export/issues"
},
"license": "MIT",
"author": {
"name": "AnsonH",
"email": "[email protected]",
"url": "https://ansonheung.me"
},
"files": [
"dist"
],
"bin": {
"ytpl-export": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AnsonH/youtube-playlist-export.git"
},
"scripts": {
"start": "babel source -d dist --watch",
"build": "babel source -d dist",
"clean": "rm -rf dist",
"format": "prettier --write **/*.{js,md}",
"lint": "eslint **/*.js --fix",
"prepare": "husky install",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.2",
"commander": "^8.1.0",
"conf": "^10.0.2",
"inquirer": "^8.1.2",
"is-absolute": "^1.0.0",
"json2csv": "^5.0.6",
"ora": "5.4.1",
"progress": "^2.0.3",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/jest": "^27.0.2",
"axios-mock-adapter": "^1.20.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.2",
"husky": "^7.0.2",
"jest": "^27.2.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"babel": {
"comments": false,
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "10"
}
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"clearMocks": true,
"setupFiles": [
"./tests/setupJest.js"
]
},
"lint-staged": {
"**/*.{js,md}": [
"prettier --write"
]
}
}