diff --git a/package.json b/package.json index 28df467..293cf80 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,38 @@ { "name": "npm-offline-registry", "version": "0.0.1", - "private": true, + "description": "Super simple loca npm registry server for offline usage", + "main": "bin/www", + "directories": { + "test": "test" + }, + "dependencies": { + "express": "^4.13.4" + }, + "devDependencies": { + "mocha": "^2.4.5" + }, "scripts": { + "test": "mocha ", "start": "node ./bin/www" }, - "dependencies": { - "express": "~4.13.1" - } + "bin": { + "npm-offline-registry" : "./bin/www" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/harish2704/npm-offline-registry.git" + }, + "keywords": [ + "registry", + "offline", + "npm", + "cache" + ], + "author": "Harish.K ", + "license": "MIT", + "bugs": { + "url": "https://github.com/harish2704/npm-offline-registry/issues" + }, + "homepage": "https://github.com/harish2704/npm-offline-registry#readme" }