Skip to content

Commit

Permalink
Merge pull request #2 from bchainhub/update/minor-01
Browse files Browse the repository at this point in the history
Minor
  • Loading branch information
rastislavcore authored Oct 23, 2023
2 parents 872f258 + fca0f06 commit 68431c5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Publish package on NPM 📦
run: npm publish --access public
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ A comprehensive JSON module containing primary administrative divisions for coun
To use this module in your project, you can install it via npm:

```bash
npm install @cryptohub/countries-divisions-alpha3
npm install @blockchainhub/countries-divisions-alpha3
```

## Usage

Once installed, you can `require` it in your JavaScript/Node.js project:

```javascript
const countriesDivisions = require('@cryptohub/countries-divisions-alpha3');
const countriesDivisions = require('@blockchainhub/countries-divisions-alpha3');
console.log(countriesDivisions['USA']); // Example output: { type_en: "State", type_local: "State" }
```

Expand Down Expand Up @@ -57,7 +57,7 @@ The following countries are excluded from the list due to lack of divisions:

## License

This project is licensed under the [CORE License](https://github.com/cryptohub-digital/core-license/blob/master/LICENSE). Please see the [LICENSE](https://github.com/cryptohub-digital/core-license/blob/master/LICENSE) file for more details.
This project is licensed under the [CORE License](https://github.com/bchainhub/core-license/blob/master/LICENSE). Please see the [LICENSE](https://github.com/bchainhub/core-license/blob/master/LICENSE) file for more details.

## Contributing

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@cryptohub/countries-divisions-alpha3",
"version": "1.0.0",
"homepage": "https://github.com/cryptohub-digital/countries-divisions-alpha3",
"name": "@blockchainhub/countries-divisions-alpha3",
"version": "1.0.1",
"homepage": "https://github.com/bchainhub/countries-divisions-alpha3",
"description": "A comprehensive JSON module containing primary administrative divisions for countries based on the ISO 3166-1 Alpha-3 standard.",
"main": "index.js",
"repository": "git@github.com:cryptohub-digital/countries-divisions-alpha3.git",
"author": "CRYPTO ▪ HUB® (https://cryptohub.digital)",
"repository": "git@github.com:bchainhub/countries-divisions-alpha3.git",
"author": "Blockchain Hub",
"license": "CORE",
"keywords": [
"countries",
Expand All @@ -28,7 +28,7 @@
"boroughs"
],
"bugs": {
"url": "https://github.com/cryptohub-digital/countries-divisions-alpha3/issues"
"url": "https://github.com/bchainhub/countries-divisions-alpha3/issues"
},
"files": [
"index.js",
Expand Down

0 comments on commit 68431c5

Please sign in to comment.