Skip to content

Commit 28bb340

Browse files
committed
init
1 parent 96922d1 commit 28bb340

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

.eslintrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "eslint-config-ali",
3+
"globals": {
4+
"my": true,
5+
"App": true,
6+
"Component": true,
7+
"Page": true
8+
},
9+
"rules": {}
10+
}

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
*.iml
2+
*.log
3+
.idea
4+
.entry
5+
.ipr
6+
.iws
7+
*~
8+
~*
9+
*.diff
10+
*.patch
11+
*.bak
12+
.DS_Store
13+
Thumbs.db
14+
.project
15+
.*proj
16+
.svn
17+
*.swp
18+
*.swo
19+
*.pyc
20+
*.pyo
21+
node_modules
22+
.cache
23+
.vscode
24+
*.xcworkspace
25+
yarn.lock
26+
.tea
27+
.entry
28+
/build/
29+
/lib/
30+
/es/

package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "mini-chart",
3+
"version": "0.0.1",
4+
"description": "小程序图表库",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/ant-mini-program/mini-chart.git"
8+
},
9+
"keywords": [
10+
"mini-program",
11+
"charts"
12+
],
13+
"bugs": {
14+
"url": "https://github.com/ant-mini-program/mini-chart/issues"
15+
},
16+
"homepage": "https://github.com/ant-mini-program/mini-chart#readme",
17+
"dependencies": {
18+
"@antv/my-f2": "~1.1.5"
19+
},
20+
"devDependencies": {
21+
"@babel/core": "^7.2.0",
22+
"@babel/preset-env": "^7.3.0",
23+
"babel-loader": "^8.0.0",
24+
"eslint": "^4.19.1",
25+
"eslint-config-ali": "^3.1.0",
26+
"eslint-plugin-import": "^2.11.0",
27+
"webpack": "^4.29.0",
28+
"webpack-cli": "^3.2.0"
29+
},
30+
"scripts": {
31+
}
32+
}

0 commit comments

Comments
 (0)