-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 949 Bytes
/
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
{
"name": "reddit-migrate",
"version": "2.0.0",
"description": "A CLI written in JavaScript to migrate, export and import reddit account data!",
"bin": "dist/cli.js",
"repository": "cAttte/reddit-migrate",
"author": "catte_",
"license": "MIT",
"bugs": "https://github.com/cAttte/reddit-migrate/issues",
"homepage": "https://github.com/cAttte/reddit-migrate#readme",
"scripts": {
"preinstall": "tsc",
"format": "prettier --write src/",
"build": "tsc",
"watch": "tsc --watch"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.1.0",
"dotenv": "^8.2.0",
"inquirer": "^7.3.3",
"log-symbols": "^4.0.0",
"ora": "^5.0.0",
"snoowrap": "^1.21.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}