@lafrae/specification 0.0.2 → 0.0.3

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 +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,7 +7,7 @@ Definição de pipeline de especificações
7
7
  Via npm
8
8
 
9
9
  ```bash
10
- npm i @sintese/specification
10
+ npm i @lafrae/specification
11
11
  ```
12
12
 
13
13
  ## Usando
@@ -54,7 +54,7 @@ module.exports = { IsBiggerThan };
54
54
 
55
55
  ```javascript
56
56
  // index.js
57
- const { And } = require("@sintese/specs");
57
+ const { And } = require("@lafrae/specs");
58
58
 
59
59
  const { IsEvenNumber } = require("./IsEvenNumber.js");
60
60
  const { IsBiggerThan } = require("./IsBiggerThan.js");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lafrae/specification",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "engines": {
5
5
  "node": ">=18"
6
6
  },