From acfa95e2aa5c094eadd20ca539cd1ea43025743e Mon Sep 17 00:00:00 2001 From: Philipp Bock Date: Fri, 16 Dec 2016 13:06:38 +0100 Subject: [PATCH] Improve package.json and add hashbang to index.js --- index.js | 1 + package.json | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) mode change 100644 => 100755 index.js diff --git a/index.js b/index.js old mode 100644 new mode 100755 index 57ae55a..c717fc8 --- a/index.js +++ b/index.js @@ -1,3 +1,4 @@ +#!/usr/bin/env node 'use strict'; const streamToPromise = require('stream-to-promise'); diff --git a/package.json b/package.json index ef2a9a3..e01b17a 100644 --- a/package.json +++ b/package.json @@ -24,5 +24,9 @@ ], "bin": { "c3t-pad": "./index.js" - } + }, + "repository": "pbock/c3t-pad", + "bugs": { + "url": "https://github.com/pbock/c3t-pad/issues" + } }