| 12345678910111213141516171819202122232425 |
- {
- "name": "watch-finished",
- "version": "1.0.0",
- "description": "",
- "main": "index.js",
- "scripts": {
- "start": "nodemon --ignore 'data/' index.js -h",
- "movies": "nodemon --ignore 'data/' index.js -c ./config/movies.json",
- "tvshows": "nodemon --ignore 'data/' index.js -c ./config/tvshows.json",
- "all": "nodemon --ignore 'data/' index.js -c ./config/all.json",
- "help": "node index.js -h",
- "version": "node index.js -v"
- },
- "author": "",
- "license": "ISC",
- "dependencies": {
- "better-queue": "^3.8.10",
- "chokidar": "^3.2.2",
- "handbrake-js": "^4.0.1",
- "lowdb": "^1.0.0",
- "minimist": "^1.2.0",
- "nodemon": "^2.0.2",
- "npm-run-all": "^4.1.5"
- }
- }
|