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 +1 -0
- package/index.js +12 -0
- package/lib/web.zip +0 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
这是一个测试npm包,用于提供一些基本的工具函数。
|
package/index.js
ADDED
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
|
+
}
|