Skip to content

Commit b2a4528

Browse files
committed
Push v0.3.2
1 parent 019dbea commit b2a4528

File tree

4 files changed

+76
-92
lines changed

4 files changed

+76
-92
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 XIVAPI
3+
Copyright (c) 2021 XIVAPI
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# xivapi-js
22

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

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

1010
Simply add the module to your node project with `npm`:
1111
```
12-
npm i xivapi-js
12+
npm i @xivapi/js
1313
```
1414

1515
## Usage
1616

1717
Require and initialize the module in your code:
1818
```js
19-
const XIVAPI = require('xivapi-js')
19+
const XIVAPI = require('@xivapi/js')
2020
const xiv = new XIVAPI()
2121
```
2222

package-lock.json

Lines changed: 61 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "xivapi-js",
3-
"version": "0.3.0",
2+
"name": "@xivapi/js",
3+
"version": "0.3.2",
44
"description": "A Node.JS wrapper for xivapi.com",
55
"main": "XIVAPI.js",
66
"directories": {
77
"lib": "lib"
88
},
99
"dependencies": {
10-
"request": "^2.88.0",
11-
"request-promise-native": "^1.0.5"
10+
"request": "^2.88.2",
11+
"request-promise-native": "^1.0.9"
1212
},
1313
"devDependencies": {},
1414
"scripts": {
@@ -18,14 +18,14 @@
1818
"type": "git",
1919
"url": "git+https://github.com/xivapi/xivapi-js.git"
2020
},
21-
"keywords": [
22-
"xivapi",
23-
"ffxiv"
24-
],
25-
"author": "TheSacredPixel",
21+
"keywords": [
22+
"xivapi",
23+
"ffxiv"
24+
],
25+
"author": "Kim Kar <[email protected]> (https://kai.moe/)",
2626
"license": "MIT",
27-
"bugs": {
27+
"bugs": {
2828
"url": "https://github.com/xivapi/xivapi-js/issues"
29-
},
29+
},
3030
"homepage": "https://github.com/xivapi/xivapi-js#readme"
3131
}

0 commit comments

Comments
 (0)