-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
34 lines (34 loc) · 1.25 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
{
"name": "ultimate-media-server",
"version": "1.0.0",
"description": "A docker collection of services needed to make the best automated media server in existence with the least amount of effort.",
"main": "app.js",
"scripts": {
"clean": "rm -rf node_modules/ && npm run clean:dusting && rm -rf configs/",
"clean:dusting": "npm run docker:reset && rm -rf temp/plex/ temp/incomplete/ docker-compose.yml npm-debug.log",
"docker": "npm run docker:build && npm run docker:stop && npm run docker:start",
"docker:build": "node build/docker",
"docker:remove": "docker-compose rm -f",
"docker:reset": "[ -f docker-compose.yml ] && npm run docker:stop && npm run docker:remove || echo \"No docker-compose.yml found\"",
"docker:restart": "npm run docker:stop && npm run docker:start",
"docker:start": "docker-compose up -d || true",
"docker:stop": "docker-compose stop || true",
"postinstall": "npm run docker:build",
"test": "echo 'No tests specified' && exit 0"
},
"keywords": [
"Docker",
"Plex",
"Sickebeard",
"Couchpotato",
"Sabnzbd"
],
"author": "Nate Clark",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"cwd": "^0.9.1",
"json2yaml": "^1.0.3",
"shelljs": "^0.5.3"
}
}