@positive-numbers/eighteen 1.0.0 → 4.0.0

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 (3) hide show
  1. package/README.md +21 -21
  2. package/index.js +2 -2
  3. package/package.json +31 -23
package/README.md CHANGED
@@ -1,21 +1,21 @@
1
- # 🔢 18 (eighteen)
2
- This very useful npm package exports the positive integer **18**.
3
-
4
- ## Installation
5
-
6
- ```bash
7
- npm install @positive-numbers/eighteen
8
- ```
9
-
10
- ## Usage
11
-
12
- ```javascript
13
- const number18 = require('@positive-numbers/eighteen');
14
-
15
- console.log(number18);
16
- // Output: 18
17
- ```
18
-
19
- ## License
20
-
21
- ISC
1
+ # 🔢 18 (eighteen)
2
+ This very useful npm package exports the positive integer **18**.
3
+
4
+ ## Installation
5
+
6
+ ```bash
7
+ npm install @positive-numbers/eighteen
8
+ ```
9
+
10
+ ## Usage
11
+
12
+ ```javascript
13
+ const number18 = require('@positive-numbers/eighteen');
14
+
15
+ console.log(number18);
16
+ // Output: 18
17
+ ```
18
+
19
+ ## License
20
+
21
+ ISC
package/index.js CHANGED
@@ -1,2 +1,2 @@
1
- const dependency = require("eighteen-positive-number-interactions");
2
- module.exports = dependency() // Export the number 18
1
+ const dependency = require("@std262/libnumbers").Eighteen;
2
+ module.exports = dependency() // Export the number 18
package/package.json CHANGED
@@ -1,23 +1,31 @@
1
- {
2
- "name": "@positive-numbers/eighteen",
3
- "version": "1.0.0",
4
- "description": "The number 18 exported as an npm package.",
5
- "main": "index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
- "keywords": [
10
- "number",
11
- "positive",
12
- "18",
13
- "eighteen"
14
- ],
15
- "author": "tj-commits",
16
- "license": "ISC",
17
- "dependencies": {
18
- "eighteen-positive-number-interactions": "*"
19
- },
20
- "publishConfig": {
21
- "access": "public"
22
- }
23
- }
1
+ {
2
+ "name": "@positive-numbers/eighteen",
3
+ "version": "4.0.0",
4
+ "description": "The number 18 exported as an npm package.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "number",
11
+ "positive",
12
+ "18",
13
+ "eighteen"
14
+ ],
15
+ "author": "tj-commits",
16
+ "license": "ISC",
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/js-constant/positive-numbers.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/js-constant/positive-numbers/issues"
26
+ },
27
+ "homepage": "https://github.com/js-constant/positive-numbers#readme",
28
+ "dependencies": {
29
+ "@std262/libnumbers": "^1.0.0"
30
+ }
31
+ }