-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 964 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 964 Bytes
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
{
"name": "reddit-saved-sync",
"version": "1.0.0",
"description": "Downloads the media of your saved reddit posts locally.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha --recursive",
"lint": "eslint . --fix",
"preinstall": "./preinstall.sh",
"postinstall": "gallery-dl --version || (echo 'gallery-dl not installed' && exit 1)"
},
"engines": {
"node": ">16.0.0"
},
"author": "Hannes Birgersson",
"license": "ISC",
"repository": "github:HBir/Reddit-saved-export",
"dependencies": {
"commander": "^9.1.0",
"dotenv": "^16.0.0",
"image-extensions": "^1.1.0",
"snoowrap": "^1.23.0",
"video-extensions": "^1.2.0",
"youtube-dl-exec": "^2.0.7"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.2.2"
},
"bin": {
"reddit": "index.js"
}
}