@positive-numbers/twenty-four 1.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.
- package/README.md +21 -0
- package/index.js +4 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# 🔢 24 (twenty-four)
|
|
2
|
+
This very useful npm package exports the positive integer **24**.
|
|
3
|
+
|
|
4
|
+
## Installation
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
npm install @positive-numbers/twenty-four
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```javascript
|
|
13
|
+
const number24 = require('@positive-numbers/twenty-four');
|
|
14
|
+
|
|
15
|
+
console.log(number24);
|
|
16
|
+
// Output: 24
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## License
|
|
20
|
+
|
|
21
|
+
ISC
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@positive-numbers/twenty-four",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "The number 24 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
|
+
"24",
|
|
13
|
+
"twenty-four"
|
|
14
|
+
],
|
|
15
|
+
"author": "tj-commits",
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"five": "*"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
}
|
|
23
|
+
}
|