diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 51 |
1 files changed, 30 insertions, 21 deletions
diff --git a/package.json b/package.json index 26a2e08..2d788a0 100644 --- a/package.json +++ b/package.json @@ -1,23 +1,32 @@ { - "name": "nodejs-git-frontend", - "version": "1.0.0", - "description": "A simple git web-frontend made with nodejs", - "main": "dist/app.html", - "author": "HampusMat", - "license": "MIT", - "private": true, - "scripts": { - "dev": "parcel watch --no-source-maps src/app.html", - "build": "parcel build --no-source-maps src/app.html" - }, - "dependencies": { - "bootstrap": "5.0.0-beta3", - "date-fns": "^2.21.1", - "express": "5.0.0-alpha.8", - "js-yaml": "^4.1.0" - }, - "devDependencies": { - "@parcel/transformer-sass": "2.0.0-beta.2", - "parcel": "^2.0.0-beta.2" - } + "name": "nodejs-git-frontend", + "version": "1.0.0", + "description": "A simple git web-frontend made with nodejs", + "main": "dist/app.html", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dev": "parcel watch --no-source-maps src/app.html", + "build": "parcel build --no-source-maps src/app.html" + }, + "repository": { + "type": "git", + "url": "git+ssh://git@gitlab.com/HampusMat/nodejs-git-frontend.git" + }, + "author": "HampusMat", + "license": "MIT", + "bugs": { + "url": "https://gitlab.com/HampusMat/nodejs-git-frontend/issues" + }, + "homepage": "https://gitlab.com/HampusMat/nodejs-git-frontend#readme", + "dependencies": { + "bootstrap": "^5.0.0-beta3", + "date-fns": "^2.21.3", + "express": "^5.0.0-alpha.8", + "js-yaml": "^4.1.0", + "nodegit": "^0.27.0" + }, + "devDependencies": { + "@parcel/transformer-sass": "^2.0.0-beta.2", + "parcel": "^2.0.0-beta.2" + } } |