@prasadsl/test 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 +1 -0
- package/index.js +1 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
this is test
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('Hello, World!');
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@prasadsl/test",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "this is the test library for platform",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/prasaSL/packages.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"test"
|
|
15
|
+
],
|
|
16
|
+
"author": "prasad madushan",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/prasaSL/packages/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://github.com/prasaSL/packages#readme"
|
|
22
|
+
}
|