From fe47c92ea5ef5e3671d60e11a776c23e20116633 Mon Sep 17 00:00:00 2001 From: bas080 Date: Fri, 8 Oct 2021 01:05:22 +0200 Subject: [PATCH] Mention the npm page --- README.md | 6 +++++- README.mz | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c164323..92f10a7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Patroon ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green?style=flat-square) +![NPM](https://img.shields.io/npm/v/patroon?color=blue&style=flat-square) Pattern matching in Javascript without additional syntax. @@ -17,6 +18,8 @@ Pattern matching in Javascript without additional syntax. ## Installation +[Patroon][9] is hosted on the NPM repository. + ```bash npm install patroon ``` @@ -329,7 +332,7 @@ npx nyc npm t && npx nyc check-coverage ``` ``` -> patroon@0.1.1 test +> patroon@0.1.2 test > tape ./src/index.test.js TAP version 13 @@ -404,3 +407,4 @@ polite. Some suggestions for contributions: [6]:https://github.com/bas080/markatzea [7]:https://stackoverflow.com/questions/50452844/functional-programming-style-pattern-matching-in-javascript/67376827#67376827 [8]:https://github.com/istanbuljs/nyc +[9]:https://www.npmjs.com/package/patroon diff --git a/README.mz b/README.mz index 256b35a..55c3fb8 100644 --- a/README.mz +++ b/README.mz @@ -1,6 +1,7 @@ # Patroon ![Code Coverage](https://img.shields.io/badge/coverage-100%25-green?style=flat-square) +![NPM](https://img.shields.io/npm/v/patroon?color=blue&style=flat-square) Pattern matching in Javascript without additional syntax. @@ -17,6 +18,8 @@ Pattern matching in Javascript without additional syntax. ## Installation +[Patroon][9] is hosted on the NPM repository. + ```bash npm install patroon ``` @@ -367,3 +370,4 @@ polite. Some suggestions for contributions: [6]:https://github.com/bas080/markatzea [7]:https://stackoverflow.com/questions/50452844/functional-programming-style-pattern-matching-in-javascript/67376827#67376827 [8]:https://github.com/istanbuljs/nyc +[9]:https://www.npmjs.com/package/patroon diff --git a/package-lock.json b/package-lock.json index 996b979..629ccb5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "patroon", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "patroon", - "version": "0.1.1", + "version": "0.1.2", "license": "GPLv3", "devDependencies": { "tape": "^5.1.1", diff --git a/package.json b/package.json index e3b1a4e..50e3a19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "patroon", - "version": "0.1.1", + "version": "0.1.2", "description": "Pattern matching library", "repository": "github:bas080/patroon", "main": "./src/index.js",