chore: rename package

* No reason to have the `node-` in the published package's name.
This commit is contained in:
Josh Sherman 2019-09-09 22:47:36 -05:00
parent 4886f14bc3
commit 23dfd7933b
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
2 changed files with 4 additions and 4 deletions

View file

@ -11,16 +11,16 @@ Official Node.js library for [Holiday API](https://holidayapi.com)
```shell
# NPM
npm install --save node-holidayapi
npm install --save holidayapi
# Yarn
yarn add node-holidayapi
yarn add holidayapi
```
## Usage
```javascript
import { HolidayAPI } from 'node-holidayapi';
import { HolidayAPI } from 'holidayapi';
const key = 'Insert your API key here';
const holidayApi = new HolidayAPI({ key });