Skip to content

Commit 4bbd785

Browse files
committed
first add
1 parent 1fc611f commit 4bbd785

File tree

5 files changed

+473
-0
lines changed

5 files changed

+473
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules/
2+
sftp-config.json
3+
diff
4+
log
5+
npm-debug.log
6+
lib/
7+
demo/
8+
.vscode

.npmignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
node_modules/
2+
src/
3+
coverage/
4+
demo/
5+
test/
6+
ISSUE_TEMPLATE.md
7+
appveyor.yml
8+
README_zh-CN.md
9+
*.map
10+
wepy.config.js
11+
.gitignore

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "wepy-com-progress-circle",
3+
"version": "1.0.3",
4+
"description": "wepy的第三方组件:圆形进度条",
5+
"main": "progress-circle.wpy",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/hironi/wepy-com-progress-circle.git"
12+
},
13+
"keywords": [
14+
"wepy",
15+
"wepy-com",
16+
"weapp"
17+
],
18+
"author": "hironi",
19+
"license": "MIT",
20+
"bugs": {
21+
"url": "https://github.com/hironi/wepy-com-progress-circle/issues"
22+
},
23+
"homepage": "https://github.com/hironi/wepy-com-progress-circle#readme"
24+
}

0 commit comments

Comments
 (0)