marius_package 1.0.1 → 1.0.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/calculator.js +2 -1
  3. package/package.json +25 -25
package/README.md CHANGED
@@ -1 +1 @@
1
- Hello my name is sangwa Marius and I'm really amazed to publish this first package of mine on node package manager and I thank my teacher UMWEZERWA Stanley for having motivated us studying JavaScript
1
+ Hello, my name is Sangwa Marius and I have created this package to help perform some basic arthmetic operations like addition , subtraction and multiplication . This is an open source package that you can install from node package manager and be free to report the bugs
package/calculator.js CHANGED
@@ -14,8 +14,9 @@ function mul(...nums){
14
14
 
15
15
 
16
16
 
17
- modules.exports = [
17
+ module.exports = [
18
18
  add,sub,mul
19
19
  ]
20
20
 
21
21
 
22
+
package/package.json CHANGED
@@ -1,25 +1,25 @@
1
- {
2
- "name": "marius_package",
3
- "version": "1.0.1",
4
- "description": "a package for study purpose",
5
- "main": "index.js",
6
- "type":"commonjs",
7
- "scripts": {
8
- "test": "echo \"Error: no test specified\" && exit 1"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/sangwa-marius/tr_stanely.git"
13
- },
14
- "keywords": [
15
- "marius",
16
- "sangwa",
17
- "ganza"
18
- ],
19
- "author": "Sangwa Marius",
20
- "license": "MIT",
21
- "bugs": {
22
- "url": "https://github.com/sangwa-marius/tr_stanely/issues"
23
- },
24
- "homepage": "https://github.com/sangwa-marius/tr_stanely#readme"
25
- }
1
+ {
2
+ "name": "marius_package",
3
+ "version": "1.0.2",
4
+ "description": "a package for study purpose",
5
+ "main": "index.js",
6
+ "type":"commonjs",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/sangwa-marius/tr_stanely.git"
13
+ },
14
+ "keywords": [
15
+ "marius",
16
+ "sangwa",
17
+ "ganza"
18
+ ],
19
+ "author": "Sangwa Marius",
20
+ "license": "MIT",
21
+ "bugs": {
22
+ "url": "https://github.com/sangwa-marius/tr_stanely/issues"
23
+ },
24
+ "homepage": "https://github.com/sangwa-marius/tr_stanely#readme"
25
+ }