-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.23 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
{
"name": "reddit-youtube-video-bot",
"version": "1.0.0",
"description": "Automated system to (1) scrape Reddit, (2) repackage the content, and (3) upload it to other platforms like YouTube.",
"main": "index.js",
"bin": {
"ryvb": "./lib/index.js"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./lib/commands",
"bin": "ryvb",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"scripts": {
"test": "jest -c jest.config.js",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "sh ./scripts/prepack.sh",
"version": "oclif-dev readme && git add README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielgwilson/reddit-youtube-video-bot.git"
},
"author": "Daniel G. Wilson",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/danielgwilson/reddit-youtube-video-bot/issues"
},
"homepage": "https://github.com/danielgwilson/reddit-youtube-video-bot#readme",
"private": true,
"dependencies": {
"@google-cloud/text-to-speech": "^2.3.0",
"@nexrender/action-copy": "1.8.16",
"@nexrender/action-encode": "1.8.16",
"@nexrender/action-upload": "1.10.0",
"@nexrender/cli": "1.10.1",
"@nexrender/core": "1.11.3",
"@nexrender/provider-ftp": "1.10.0",
"@nexrender/provider-gs": "1.9.2",
"@nexrender/provider-s3": "1.8.16",
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/plugin-autocomplete": "^0.1.5",
"@oclif/plugin-help": "^2.2.3",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/test": "^1.2.5",
"acorn": "^7.2.0",
"azure-cognitiveservices-websearch": "^2.0.0",
"bottleneck": "^2.19.5",
"canvas": "^2.6.1",
"config": "^3.3.1",
"cron": "^1.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jsdom": "^16.2.2",
"keyword-extractor": "0.0.18",
"ms-rest-azure": "^3.0.0",
"node-fetch": "^2.6.1",
"node-notifier": "^6.0.0",
"playwright": "^1.4.0",
"playwright-addons": "github:Niek/playwright-addons#master",
"remove-markdown": "^0.3.0",
"tslib": "^1.13.0",
"types-for-adobe": "^1.7.0",
"underscore.string": "^3.3.5",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/cron": "^1.7.2",
"@types/node-notifier": "^5.4.2",
"@types/remove-markdown": "^0.1.1",
"@types/underscore.string": "0.0.38",
"@types/uuid": "^7.0.3",
"@oclif/dev-cli": "^1.22.2",
"@types/config": "0.0.36",
"@types/jest": "^25.2.2",
"@types/node": "^13.13.6",
"@types/node-fetch": "^2.5.7",
"@types/prettier": "^1.19.1",
"@types/request": "^2.48.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"globby": "^11.0.0",
"jest": "^25.5.4",
"prettier": "^1.19.1",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"types": "lib/index.d.ts"
}