Compare commits
	
		
			15 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 71e9a5a46e | |||
| fce6dc7658 | |||
| baff59181c | |||
| 490d015f80 | |||
| f1cc2c4ebe | |||
| 2f4421d9e0 | |||
| 92cc094787 | |||
| f30b46c384 | |||
| d9f679603a | |||
| 64bd9d1e14 | |||
| 721826d454 | |||
| 242fe3515c | |||
| ccf40d2161 | |||
| 832b8ba539 | |||
|  | 0477e49eca | 
| @@ -3,7 +3,8 @@ node_js: '8.7.0' | ||||
| git: | ||||
|    submodules: true | ||||
| script: | ||||
|    yarn test | ||||
|    - yarn test | ||||
|    - yarn coverage  | ||||
| before_install: | ||||
|    - cd seasoned_api | ||||
| before_script: yarn | ||||
|   | ||||
| @@ -1,7 +1,9 @@ | ||||
| # 🌶 seasonedShows | ||||
| [](https://travis-ci.org/KevinMidboe/seasonedShows) | ||||
| [](https://coveralls.io/github/KevinMidboe/seasonedShows?branch=coverage) | ||||
| [](https://www.versioneye.com/user/projects/5ac541370fb24f4489396e02) | ||||
| [](https://snyk.io/test/github/KevinMidboe/seasonedShows?targetFile=seasoned_api/package.json) | ||||
| []() | ||||
| [](https://opensource.org/licenses/MIT) | ||||
|  | ||||
| Your customly *seasoned* movie and show requester, downloader and organizer.   | ||||
| 📺 [Demo](https://kevinmidboe.com/request) | ||||
|   | ||||
| @@ -61,7 +61,7 @@ class strayEpisode(object): | ||||
| 		return hashlib.md5("b'{}'".format(self.parent).encode()).hexdigest()[:8] | ||||
|  | ||||
| 	def findSeriesName(self): | ||||
| 		find = re.compile("^[a-zA-Z. ]*") | ||||
| 		find = re.compile("^[a-zA-Z0-9. ]*") | ||||
| 		m = re.match(find, self.parent) | ||||
| 		if m: | ||||
| 			name, hit = process.extractOne(m.group(0), getShowNames().keys()) | ||||
|   | ||||
| @@ -1,38 +1,42 @@ | ||||
| { | ||||
|   "name": "seasoned-api", | ||||
|   "description": "Packages needed to build and commands to run seasoned api node server.", | ||||
|   "license": { | ||||
|     "type": "MIT", | ||||
|     "url": "https://www.opensource.org/licenses/mit-license.php" | ||||
|   }, | ||||
|   "main": "webserver/server.js", | ||||
|   "scripts": { | ||||
|     "start": "cross-env SEASONED_CONFIG=conf/development.json NODE_PATH=. node src/webserver/server.js", | ||||
|     "test": "cross-env SEASONED_CONFIG=conf/test.json NODE_PATH=. mocha --recursive test", | ||||
|         "coverage": "cross-env SEASONED_CONFIG=conf/test.json NODE_PATH=. istanbul cover -x script/autogenerate-documentation.js --include-all-sources --dir test/.coverage node_modules/mocha/bin/_mocha --recursive test/**/* -- --report lcovonly && cat test/.coverage/lcov.info | coveralls && rm -rf test/.coverage", | ||||
|     "coverage": "cross-env SEASONED_CONFIG=conf/test.json NODE_PATH=. nyc mocha --recursive test && nyc report --reporter=text-lcov | coveralls", | ||||
|     "lint": "./node_modules/.bin/eslint src/" | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "bcrypt-nodejs": "^0.0.3", | ||||
|         "blanket": "^1.2.3", | ||||
|         "body-parser": "~1.0.1", | ||||
|         "codecov": "^3.0.0", | ||||
|         "cross-env": "^3.1.3", | ||||
|         "express": "~4.11.0", | ||||
|     "body-parser": "~1.18.2", | ||||
|     "cross-env": "~5.1.4", | ||||
|     "express": "~4.16.0", | ||||
|     "jsonwebtoken": "^8.0.1", | ||||
|         "mocha-lcov-reporter": "^1.3.0", | ||||
|         "mongoose": "^3.6.13", | ||||
|     "mongoose": "~5.0.11", | ||||
|     "moviedb": "^0.2.10", | ||||
|     "node-cache": "^4.1.1", | ||||
|         "nodemailer": "^4.0.1", | ||||
|         "python-shell": "^0.4.0", | ||||
|         "raven": "^2.2.1", | ||||
|         "request": "^2.81.0", | ||||
|     "python-shell": "^0.5.0", | ||||
|     "request": "^2.85.0", | ||||
|     "request-promise": "^4.2", | ||||
|         "sqlite3": "3.1.13" | ||||
|     "sqlite3": "4.0.0" | ||||
|   }, | ||||
|   "devDependencies": { | ||||
|     "coveralls": "^3.0.0", | ||||
|     "eslint": "^4.9.0", | ||||
|     "eslint-config-airbnb-base": "^12.1.0", | ||||
|     "eslint-plugin-import": "^2.8.0", | ||||
|     "istanbul": "^0.4.5", | ||||
|     "mocha": "^5.0.4", | ||||
|         "supertest": "^2.0.1", | ||||
|     "mocha-lcov-reporter": "^1.3.0", | ||||
|     "nyc": "^11.6.0", | ||||
|     "raven": "^2.4.2", | ||||
|     "supertest": "^3.0.0", | ||||
|     "supertest-as-promised": "^4.0.1" | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user