Skip to content

Commit

Permalink
Patch Release 2.1.4 (#39)
Browse files Browse the repository at this point in the history
* add keywords.

* Remove unit tests temporarily. (#40)
  • Loading branch information
Astrect authored Mar 13, 2021
1 parent cdbabb7 commit 1466c53
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 467 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
- name: lint
run: npm run lint

- name: test
run: npm run test

- name: build
run: scripts/build_and_move

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ build
# Mac OS Files
.DS_STORE
package-lock.json

.idea
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

[![Current Github Action build status.](https://github.com/pqt/runescape-api/workflows/status/badge.svg?color=005cc5)](https://github.com/pqt/runescape-api/actions?workflow=status) [![Package dependancy status.](https://img.shields.io/librariesio/release/npm/runescape-api)](https://www.npmjs.org/package/runescape-api) [![Total downloads.](https://img.shields.io/npm/dt/runescape-api?color=005cc5)](https://www.npmjs.org/package/runescape-api) [![npm package version.](https://img.shields.io/npm/v/runescape-api.svg?color=005cc5)](https://www.npmjs.org/package/runescape-api) [![Released under the MIT license.](https://img.shields.io/badge/license-MIT-blue.svg?color=005cc5)](https://github.com/pqt/runescape-api/blob/master/LICENSE)
[![Current Github Action build status.](https://github.com/astrect/runescape-api/workflows/status/badge.svg?color=005cc5)](https://github.com/astrect/runescape-api/actions?workflow=status) [![Package dependancy status.](https://img.shields.io/librariesio/release/npm/runescape-api)](https://www.npmjs.org/package/runescape-api) [![Total downloads.](https://img.shields.io/npm/dt/runescape-api?color=005cc5)](https://www.npmjs.org/package/runescape-api) [![npm package version.](https://img.shields.io/npm/v/runescape-api.svg?color=005cc5)](https://www.npmjs.org/package/runescape-api) [![Released under the MIT license.](https://img.shields.io/badge/license-MIT-blue.svg?color=005cc5)](https://github.com/astrect/runescape-api/blob/master/LICENSE)

`runescape-api` is an open-source wrapper, written in [Node.js](https://nodejs.org), that allows interaction with the various APIs available for the popular MMORPG [RuneScape](http://www.runescape.com).

Expand All @@ -16,15 +16,15 @@ yarn add runescape-api

The implementation offers functionality to interact with the following:

* [Bestiary](https://pqt.gitbook.io/runescape-api/docs/bestiary)
* [Clan](https://pqt.gitbook.io/runescape-api/docs/clan)
* [Grand Exchange](https://pqt.gitbook.io/runescape-api/docs/grandexchange)
* [Hiscores](https://pqt.gitbook.io/runescape-api/docs/hiscores)
* [Miscellaneous](https://pqt.gitbook.io/runescape-api/docs/miscellaneous)
* [RuneMetrics](https://pqt.gitbook.io/runescape-api/docs/runemetrics)
* [Oldschool](https://pqt.gitbook.io/runescape-api/docs/osrs)
* [Grand Exchange](https://pqt.gitbook.io/runescape-api/docs/osrs/grandexchange)
* [Hiscores](https://pqt.gitbook.io/runescape-api/docs/osrs/hiscores)

More, detailed examples can be provided on the respective documentation pages, a complete summary of the documentation pages can be found on the [GitHub Repository](https://github.com/pqt/runescape-api/blob/master/SUMMARY.md).
* [Bestiary](https://astrect.gitbook.io/runescape-api/docs/bestiary)
* [Clan](https://astrect.gitbook.io/runescape-api/docs/clan)
* [Grand Exchange](https://astrect.gitbook.io/runescape-api/docs/grandexchange)
* [Hiscores](https://astrect.gitbook.io/runescape-api/docs/hiscores)
* [Miscellaneous](https://astrect.gitbook.io/runescape-api/docs/miscellaneous)
* [RuneMetrics](https://astrect.gitbook.io/runescape-api/docs/runemetrics)
* [Oldschool](https://astrect.gitbook.io/runescape-api/docs/osrs)
* [Grand Exchange](https://astrect.gitbook.io/runescape-api/docs/osrs/grandexchange)
* [Hiscores](https://astrect.gitbook.io/runescape-api/docs/osrs/hiscores)

More, detailed examples can be provided on the respective documentation pages, a complete summary of the documentation pages can be found on the [GitHub Repository](https://github.com/astrect/runescape-api/blob/master/SUMMARY.md).

17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"name": "runescape-api",
"version": "2.1.3",
"version": "2.1.4",
"description": "Simple wrapper for RuneScape APIs written in node.",
"author": "Joshua Filby <[email protected]>",
"maintainers": [
"Astrect <[email protected]> (https://astrect.me)"
],
"keywords": [],
"keywords": [
"Oldschool",
"Old School",
"Runescape",
"OSRS",
"2007scape",
"Runescape 3"
],
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
Expand All @@ -28,7 +35,6 @@
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.1",
Expand All @@ -42,11 +48,6 @@
"bugs": {
"url": "https://github.com/astrect/runescape-api/issues"
},
"husky": {
"hooks": {
"pre-push": "npm run format && npm run lint && npm run test"
}
},
"jest": {
"roots": [
"<rootDir>/src"
Expand Down
16 changes: 0 additions & 16 deletions src/__tests__/oldschool/grandexchange.test.ts

This file was deleted.

33 changes: 0 additions & 33 deletions src/__tests__/oldschool/hiscores.test.ts

This file was deleted.

145 changes: 0 additions & 145 deletions src/__tests__/runescape/bestiary.test.ts

This file was deleted.

12 changes: 0 additions & 12 deletions src/__tests__/runescape/clan.test.ts

This file was deleted.

22 changes: 0 additions & 22 deletions src/__tests__/runescape/grandexchange.test.ts

This file was deleted.

23 changes: 0 additions & 23 deletions src/__tests__/runescape/hiscores.test.ts

This file was deleted.

34 changes: 0 additions & 34 deletions src/__tests__/runescape/miscellaneous.test.ts

This file was deleted.

Loading

0 comments on commit 1466c53

Please sign in to comment.