Skip to content

Commit

Permalink
Push v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kaimoe committed Jan 26, 2021
1 parent 019dbea commit b2a4528
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 92 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 XIVAPI
Copyright (c) 2021 XIVAPI

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# xivapi-js

[![npm version](https://badge.fury.io/js/xivapi-js.svg)](https://www.npmjs.com/package/xivapi-js)
[![npm version](https://badge.fury.io/js/%40xivapi%2Fjs.svg)](https://badge.fury.io/js/%40xivapi%2Fjs)
[![license](https://img.shields.io/github/license/xivapi/xivapi-js.svg)](LICENSE)

This is a pure JS wrapper for interacting with [XIVAPI](https://xivapi.com/) and handling all requests in a simple, promise-driven manner.
Expand All @@ -9,14 +9,14 @@ This is a pure JS wrapper for interacting with [XIVAPI](https://xivapi.com/) and

Simply add the module to your node project with `npm`:
```
npm i xivapi-js
npm i @xivapi/js
```

## Usage

Require and initialize the module in your code:
```js
const XIVAPI = require('xivapi-js')
const XIVAPI = require('@xivapi/js')
const xiv = new XIVAPI()
```

Expand Down
138 changes: 61 additions & 77 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "xivapi-js",
"version": "0.3.0",
"name": "@xivapi/js",
"version": "0.3.2",
"description": "A Node.JS wrapper for xivapi.com",
"main": "XIVAPI.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"devDependencies": {},
"scripts": {
Expand All @@ -18,14 +18,14 @@
"type": "git",
"url": "git+https://github.com/xivapi/xivapi-js.git"
},
"keywords": [
"xivapi",
"ffxiv"
],
"author": "TheSacredPixel",
"keywords": [
"xivapi",
"ffxiv"
],
"author": "Kim Kar <[email protected]> (https://kai.moe/)",
"license": "MIT",
"bugs": {
"bugs": {
"url": "https://github.com/xivapi/xivapi-js/issues"
},
},
"homepage": "https://github.com/xivapi/xivapi-js#readme"
}

0 comments on commit b2a4528

Please sign in to comment.