manyang 0.0.1

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 +6 -0
  2. package/index.js +1 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # manyang
2
+
3
+ Main entry point for manyang ecosystem.
4
+
5
+ Use scoped packages:
6
+ - @manyang/log
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "manyang",
3
+ "version": "0.0.1",
4
+ "description": "manyang ecosystem entry point",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "author": "manyang",
8
+ "keywords": ["manyang", "ecosystem"],
9
+ "files": ["index.js"],
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/manyang-megantoro"
13
+ }
14
+ }