@scoober/foodtracker 0.0.1-security → 1.82.2

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.

Potentially problematic release.


This version of @scoober/foodtracker might be problematic. Click here for more details.

package/README.md CHANGED
@@ -1,5 +1,32 @@
1
- # Security holding package
1
+ # @scoober/foodtracker
2
2
 
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
3
+ Scoober food tracker app.
4
4
 
5
- Please refer to www.npmjs.com/advisories?search=%40scoober%2Ffoodtracker for more information.
5
+ ## Features
6
+
7
+ - ES6 syntax, managed with Prettier + Eslint and Stylelint
8
+ - Unit testing via Jest
9
+ - React v16.8
10
+ - ESM
11
+
12
+ ## Install
13
+
14
+ ```sh
15
+ yarn add @scoober/foodtracker
16
+ // or
17
+ npm i @scoober/foodtracker
18
+ ```
19
+
20
+ ### Usage
21
+
22
+ ```js
23
+ import { FoodTracker } from '@scoober/foodtracker';
24
+
25
+ const MyApp = () => {
26
+ return (
27
+ <div>
28
+ <FoodTracker key={YOUR_KEY} storeId={YOUR_STORE_ID} />
29
+ </div>
30
+ );
31
+ }
32
+ ```