-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "episodic",
"version": "0.0.0-development",
"description": "An opinionated CLI tool to automatically rename TV show releases",
"keywords": [
"tv show",
"series",
"episode",
"release",
"rename",
"imdb",
"cli"
],
"homepage": "https://github.com/rbardini/episodic",
"bugs": {
"url": "https://github.com/rbardini/episodic/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rbardini/episodic.git"
},
"license": "MIT",
"author": "Rafael Bardini",
"type": "module",
"exports": "./index.js",
"bin": "./bin/episodic.js",
"files": [
"bin/*",
"index.js"
],
"scripts": {
"format": "prettier --ignore-path .gitignore .",
"test": "FORCE_COLOR=0 vitest run --coverage"
},
"dependencies": {
"chalk": "^5.0.0",
"commander": "^12.0.0",
"imdb-api": "^4.4.0",
"inquirer": "^10.0.0",
"lodash.groupby": "^4.6.0",
"ora": "^8.0.0",
"video-name-parser": "^1.4.0"
},
"devDependencies": {
"@vitest/coverage-v8": "2.0.5",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.1",
"vitest": "2.0.5"
},
"engines": {
"node": ">=20"
}
}