-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.57 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
{
"name": "frame-bot",
"version": "1.0.0",
"description": "Have a directory of video files you'd like to take some snapshots of? Feel like tweeting one of those random images afterwards? frame-bot may be for you.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"check-dropbox": "node ./bin/count_uploads.js",
"check-mongo": "node ./bin/test_mongo.js",
"convert-videos": "DEBUG=video_convert node ./bin/convert_videos.js -i ../input -o ./dump/ -e mkv",
"analyze-videos": "DEBUG=video_analyze node ./bin/analyze_videos.js -i ../input -o ./dump/output.csv",
"tweet-random": "DEBUG=tweet_random_frame node ./bin/tweet_random_frame.js",
"tweet-random-sub": "DEBUG=tweet_random_frame node ./bin/tweet_random_frame.js -s",
"make-frames": "DEBUG=makeframes,makeframe_service node ./bin/make_frames -s -m -i ../input -o ./dump/"
},
"author": "Dakota Clark",
"license": "ISC",
"dependencies": {
"async": "^3.1.0",
"config": "^3.2.4",
"dashdash": "^1.14.1",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"dropbox": "^9.8.6",
"dropbox-v2-api": "^2.4.7",
"express": "^4.17.1",
"fast-csv": ">=4.3.6",
"jsesc": "^2.5.2",
"mongodb": "^3.6.9",
"twitter": "^1.7.1"
},
"directories": {
"lib": "lib"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/dudethatbe/frame-bot.git"
},
"bugs": {
"url": "https://github.com/dudethatbe/frame-bot/issues"
},
"homepage": "https://github.com/dudethatbe/frame-bot#readme"
}