| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "watch-finished",
- "version": "1.0.0",
- "description": "watch a set of source directories for finished downloads then process them with Handbrake and store the results in destination directories",
- "main": "index.js",
- "scripts": {
- "start": "npm-run-all server watch",
- "server": "forever server.js -- --trace-warning",
- "watch": "forever watch.js -- --trace-warning",
- "debug": "npm-run-all debug:server debug:watch",
- "debug:server": "DEBUG=* nodemon server.js",
- "debug:watch": "DEBUG=* nodemon watch.js",
- "dev": "npm-run-all dev:server dev:watch",
- "dev:server": "nodemon server.js",
- "dev:watch": "nodemon watch.js",
- "test": "mocha --expose-internals --no-deprecation --no-warnings --exit",
- "lint": "eslint . --max-warnings=500 --report-unused-disable-directives --fix",
- "prettier": "prettier --write \"index*.js\" \"{config,controllers,helpers,lib,routes,services,test}/**/*.js\""
- },
- "author": "",
- "license": "ISC",
- "dependencies": {
- "better-queue": "^3.8.10",
- "body-parser": "^1.19.0",
- "chokidar": "^3.2.2",
- "cli-table": "^0.3.1",
- "cookie-parser": "^1.4.4",
- "cors": "^2.8.5",
- "debug": "^4.1.1",
- "ejs": "^3.0.1",
- "express": "^4.17.1",
- "express-session": "^1.17.0",
- "forever": "^1.0.0",
- "handbrake-js": "^4.0.1",
- "http": "0.0.0",
- "lodash": "^4.17.15",
- "lowdb": "^1.0.0",
- "minimist": "^1.2.0",
- "moment": "^2.24.0",
- "morgan": "^1.9.1",
- "moviedb": "^0.2.10",
- "npm-run-all": "^4.1.5"
- },
- "devDependencies": {
- "chai": "^4.2.0",
- "ejs-lint": "^0.3.0",
- "eslint": "^6.5.1",
- "mocha": "^6.0.0",
- "nodemon": "^1.19.3",
- "prettier": "^1.18.2"
- }
- }
|