zc-keystone 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 ADDED
@@ -0,0 +1 @@
1
+ 这是一个测试npm包,用于提供一些基本的工具函数。
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ function greet(name) {
2
+ return `Hello, ${name}!`;
3
+ }
4
+
5
+ function add(a, b) {
6
+ return a + b;
7
+ }
8
+
9
+ module.exports = {
10
+ greet,
11
+ add
12
+ };
package/lib/web.zip ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "zc-keystone",
3
+ "version": "1.0.0",
4
+ "description": "my keystone framework",
5
+ "homepage": "https://github.com/Yoyzhao/mynpm#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/Yoyzhao/mynpm/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Yoyzhao/mynpm.git"
12
+ },
13
+ "license": "ISC",
14
+ "author": "zichen",
15
+ "type": "commonjs",
16
+ "files": [
17
+ "index.js",
18
+ "lib/*"
19
+ ],
20
+ "keywords": [
21
+ "keystone",
22
+ "framework",
23
+ "utils"
24
+ ],
25
+ "main": "index.js",
26
+ "scripts": {
27
+ "test": "no test"
28
+ }
29
+ }