diff --git a/package.json b/package.json index 5ca5086..67b6fa8 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,25 @@ { - "name": "shorturl", - "version": "0.0.3", - "description": "API project for freeCodeCamp", - "main": "index.js", - "scripts": { - "start": "node index.js" - }, - "dependencies": { - "body-parser": "^1.19.0", - "cors": "^2.8.5", - "dotenv": "^8.2.0", - "express": "^4.17.1" - }, - "license": "MIT" + "name": "shorturl", + "version": "0.0.1", + "description": "A FOSS link shortener for your own! (based on FCC's curriculum)", + "main": "index.js", + "scripts": { + "start": "node --watch index.js" + }, + "repository": { + "type": "git", + "url": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener.git" + }, + "bugs": { + "url": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener/issues" + }, + "homepage": "https://codeberg.org/buzzcode2007/FCC-Project-URLShortener#readme", + "dependencies": { + "body-parser": "^1.19.0", + "cors": "^2.8.5", + "dotenv": "^8.2.0", + "express": "^4.17.1", + "mongoose": "^5.11.15" + }, + "license": "BSD" }