From 8b2baec7e3296ed0ea006bb46ea45e27035155d2 Mon Sep 17 00:00:00 2001 From: Prashant Sinha Date: Tue, 30 Aug 2016 13:21:43 +0530 Subject: [PATCH] Update package.json Added `name`, `version`, `main`, `repository` and `author` fields. `name` and `main` are required to install the module via `npm` and import as module. --- package.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/package.json b/package.json index fcde20c..8c72f06 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,13 @@ { + "name": "modcheck.js", + "version": "0.1.1", + "description": "Check a UK bank account number against a sort code using the VocaLink modulus check.", + "main": "src/modcheck.js", + "repository": { + "type": "git", + "url": "git+https://github.com/liamja/modcheck.js.git" + }, + "author": "@liamja", "scripts": { "build": "node_modules/babel/bin/babel-node.js bin/build && node_modules/babel/bin/babel.js src --out-dir build", "cs": "node_modules/jscs/bin/jscs --preset airbnb ./src/*.js ./test/*.js",