diff --git a/.gitignore b/.gitignore index 87a2c72..34b4c31 100644 --- a/.gitignore +++ b/.gitignore @@ -193,3 +193,5 @@ $RECYCLE.BIN/ # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option) + +.npmrc \ No newline at end of file diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..0c348f5 --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +.npmrc \ No newline at end of file diff --git a/README.md b/README.md index 4b95b61..4757aef 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,9 @@ # **telme** #### CLI inline telegram bot notifications -> This tool is still not published to npm. The best way to use it until then: -> `npm i && npm link` This will install the dependencies and create a link to execute `telme` globally - ## TL;DR 1. Get a bot token ( [BotFather](https://telegram.me/botfather) ) -2. `$ npm install -g telme` +2. `$ npm install -g node-telme` 3. `$ telme --init` 4. Do something :) diff --git a/package.json b/package.json index b4be778..eb9d730 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,14 @@ { - "name": "telme", - "version": "0.0.1", + "name": "node-telme", + "version": "0.0.2", "bin": "bin/telme", "description": "A CLI tool that will report to you via telegram when a task is done", "main": "index.js", "author": "Sagi Dayan", + "repository": { + "type": "git", + "url": "https://git.sagidayan.com/sagi/telme" + }, "license": "MIT", "dependencies": { "node-telegram-bot-api": "^0.40.0"