@stores.com/ups 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,20 +1,20 @@
1
1
  # ups
2
2
 
3
3
  [![Test](https://github.com/stores-com/ups/actions/workflows/test.yml/badge.svg)](https://github.com/stores-com/ups/actions/workflows/test.yml)
4
- [![Coverage Status](https://coveralls.io/repos/github/mediocre/ups/badge.svg?branch=main)](https://coveralls.io/github/mediocre/ups?branch=main)
4
+ [![Coverage Status](https://coveralls.io/repos/github/stores-com/ups/badge.svg?branch=main)](https://coveralls.io/github/stores-com/ups?branch=main)
5
5
 
6
6
  The Power of UPS on Your Digital Platform. Our APIs power the data connections needed to deliver value to customers through e-commerce platforms, supply chain visibility solutions and direct integrations.
7
7
 
8
8
  ## Installation
9
9
 
10
10
  ```
11
- $ npm install @mediocre/ups
11
+ $ npm install @stores.com/ups
12
12
  ```
13
13
 
14
14
  ## Usage
15
15
 
16
16
  ```javascript
17
- const UPS = require('@mediocre/ups');
17
+ const UPS = require('@stores.com/ups');
18
18
 
19
19
  const ups = new UPS({
20
20
  client_id: 'your_client_id',
package/package.json CHANGED
@@ -25,5 +25,5 @@
25
25
  "coveralls": "node --test --test-concurrency=true --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info && coveralls < lcov.info",
26
26
  "test": "node --test --test-concurrency=true --test-reporter=spec"
27
27
  },
28
- "version": "1.0.0"
28
+ "version": "1.0.1"
29
29
  }