@dh-channel-cli-dev/core 1.0.5

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/LICENSE.md ADDED
File without changes
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
+ #!/usr/bin/env node
2
+
3
+ console.log('hello world')
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,31 @@
1
+ {
2
+ "name": "@dh-channel-cli-dev/core",
3
+ "version": "1.0.5",
4
+ "description": "dh-channel-cli-dev core",
5
+ "author": "guoliyoushui-M4 <475230132@qq.com>",
6
+ "homepage": "",
7
+ "license": "ISC",
8
+ "main": "lib/core.js",
9
+ "bin": {
10
+ "dh-channel-cli-dev": "bin/index.js"
11
+ },
12
+ "publishConfig": {
13
+ "registry": "https://registry.npmjs.org",
14
+ "access": "public"
15
+ },
16
+ "directories": {
17
+ "lib": "lib",
18
+ "test": "__tests__"
19
+ },
20
+ "files": [
21
+ "lib"
22
+ ],
23
+ "scripts": {
24
+ "test": "echo \"Error: run tests from root\" && exit 1",
25
+ "test-run": "echo \"run tests from core\""
26
+ },
27
+ "dependencies": {
28
+ "@dh-channel-cli-dev/utils": "^1.0.5"
29
+ },
30
+ "gitHead": "2b33bf491e58ab7d3ae3b70b3da28644d94ac63a"
31
+ }