Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmx committed Feb 7, 2022
1 parent 051a828 commit 123c1a0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# [**@tsmx/weather-tools**](https://github.com/tsmx/weather-tools)

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![npm (scoped)](https://img.shields.io/npm/v/@tsmx/weather-tools)
![node-current (scoped)](https://img.shields.io/node/v/@tsmx/weather-tools)
[![Build Status](https://img.shields.io/github/workflow/status/tsmx/weather-tools/git-ci-build)](https://img.shields.io/github/workflow/status/tsmx/weather-tools/git-ci-build)
[![Coverage Status](https://coveralls.io/repos/github/tsmx/weather-tools/badge.svg?branch=master)](https://coveralls.io/github/tsmx/weather-tools?branch=master)

Expand Down
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tsmx/weather-tools",
"version": "1.0.0",
"version": "1.0.1",
"description": "Toolset for calculating wind chill, dew point, heat index and more.",
"main": "weather-tools.js",
"repository": {
Expand All @@ -9,18 +9,24 @@
},
"author": "tsmx <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage"
},
"keywords": [
"weather",
"weather-station",
"wind chill",
"dew point",
"heat index",
"fahrenheit",
"celsius",
"wind direction"
"wind direction",
"compass direction"
],
"devDependencies": {
"jest": "^27.4.7"
Expand Down
2 changes: 1 addition & 1 deletion weather-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const kmhToMph = (kmh) => {

/**
* Converts Fahrenheit to Celsius
* @param {number} celsius temperature in Fahrenheit
* @param {number} fahrenheit temperature in Fahrenheit
* @returns {number} temperature in Celsius
*/
const fahrenheitToCelsius = (fahrenheit) => {
Expand Down

0 comments on commit 123c1a0

Please sign in to comment.