-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
{
"name": "medman",
"version": "2.0.4",
"description": "CLI media manager for remote media servers.",
"main": "index.ts",
"bin": {
"medman": "./build/index.js"
},
"scripts": {
"prepublish": "yarn test && tsc",
"test": "jest ./src",
"test:unit": "jest unit"
},
"keywords": [
"movies",
"tv",
"sysadmin",
"server",
"cli tool",
"cli",
"plex",
"media",
"manager",
"movie server",
"remote server"
],
"repository": "https://github.com/mttchpmn/medman-cli.git",
"author": "Matt Chapman",
"license": "ISC",
"dependencies": {
"@types/node": "^14.0.24",
"@types/sinon": "^9.0.4",
"chalk": "^4.1.0",
"commander": "^6.0.0",
"ffprobe": "^1.1.0",
"ffprobe-static": "^3.0.0",
"sinon": "^9.0.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "4.0.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"ts-jest": "^26.1.4"
}
}