@yuw-cli-dev/core 1.0.26

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 ADDED
@@ -0,0 +1,11 @@
1
+ # `core`
2
+
3
+ > TODO: description
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ const core = require('core');
9
+
10
+ // TODO: DEMONSTRATE API
11
+ ```
package/bin/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/user/bin/env node
2
+
3
+ console.log("This is the core package of yuw-cli-dev");
package/lib/core.js ADDED
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ module.exports = core;
4
+
5
+ function core() {
6
+ // TODO
7
+ }
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@yuw-cli-dev/core",
3
+ "version": "1.0.26",
4
+ "description": "> TODO: description",
5
+ "author": "yuwei <yuwei@huya.com>",
6
+ "homepage": "",
7
+ "license": "ISC",
8
+ "main": "lib/core.js",
9
+ "bin": {
10
+ "yuw-cli": "bin/index.js"
11
+ },
12
+ "directories": {
13
+ "lib": "lib",
14
+ "test": "__tests__"
15
+ },
16
+ "files": [
17
+ "lib"
18
+ ],
19
+ "scripts": {
20
+ "test": "echo \"Error: run tests from root\" && exit 1"
21
+ },
22
+ "dependencies": {
23
+ "@yuw-cli-dev/utils": "^1.0.26"
24
+ },
25
+ "gitHead": "c8020a4b7352b5a88cfbb01a7c5c201bf04d0a3e",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }