-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
105 lines (105 loc) · 2.62 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
{
"name": "pully",
"version": "2.7.0",
"description": "A simple CLI for downloading high quality YouTube videos!",
"main": "index.js",
"types": "./dist/index.d.ts",
"bin": {
"pully": "./dist/bin/pully.js"
},
"scripts": {
"clean": "rimraf ./dist/** ./temp/*/*",
"build": "tsc",
"debug": "tsc && node ./dist/debug",
"test": "tsc && nyc --color -a ava -v",
"bench": "tsc && node ./dist/benchmark",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"watch": "concurrently npm:watch:*",
"watch:build": "tsc --watch",
"watch:test": "ava --watch",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"url": "git+https://github.com/JimmyBoh/pully.git",
"type": "git"
},
"keywords": [
"youtube",
"download",
"cli",
"ffmpeg",
"encode",
"api"
],
"author": "Jim Buck <[email protected]>",
"contributors": [
"Eirik Albrigtsen <[email protected]>",
"Mario Tacke <https://mariotacke.io/>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/JimmyBoh/pully/issues"
},
"homepage": "https://github.com/JimmyBoh/pully#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@types/benchmark": "^1.0.31",
"@types/debug": "^4.1.5",
"@types/fluent-ffmpeg": "^2.1.12",
"@types/lodash.template": "^4.4.6",
"@types/node": "^12.12.22",
"@types/through": "0.0.29",
"@types/tmp": "0.1.0",
"ava": "^2.4.0",
"benchmark": "^2.1.4",
"concurrently": "^5.0.2",
"coveralls": "^3.0.9",
"microtime": "^3.0.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"chalk": "^3.0.0",
"commander": "^4.0.1",
"conf": "^6.2.0",
"debug": "^4.1.1",
"fluent-ffmpeg": "^2.1.2",
"lodash.template": "^4.5.0",
"lodash.throttle": "^4.1.1",
"log-update": "^3.3.0",
"mkdirp-promise": "^5.0.1",
"pully-core": "^0.9.0",
"sanitize-filename": "^1.6.3",
"temp-dir": "^2.0.0",
"update-notifier": "^4.0.0"
},
"ava": {
"compileEnhancements": false,
"timeout": "2m",
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**"
],
"exclude": [
"src/**/*.spec.ts",
"src/bin/pully.ts",
"src/debug.ts",
"src/benchmark.ts",
"src/lib/models.ts"
]
}
}