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 ```shell
# NPM # NPM
npm install --save node-holidayapi npm install --save holidayapi
# Yarn # Yarn
yarn add node-holidayapi yarn add holidayapi
``` ```
## Usage ## Usage
```javascript ```javascript
import { HolidayAPI } from 'node-holidayapi'; import { HolidayAPI } from 'holidayapi';
const key = 'Insert your API key here'; const key = 'Insert your API key here';
const holidayApi = new HolidayAPI({ key }); const holidayApi = new HolidayAPI({ key });

View file

@ -1,5 +1,5 @@
{ {
"name": "node-holidayapi", "name": "holidayapi",
"version": "2.0.0", "version": "2.0.0",
"description": "Official Node.js library for Holiday API", "description": "Official Node.js library for Holiday API",
"main": "dist/index.js", "main": "dist/index.js",