sveringvaroo 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/main.js +3 -0
- package/package.json +15 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
this is something called sveringvaroo
|
package/main.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sveringvaroo",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A personal package",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"tool"
|
|
7
|
+
],
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"author": "jasonkaimong",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"main": "main.js",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
|
+
}
|
|
15
|
+
}
|