forked from youzan/vant-weapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@vant/weapp",
"version": "1.5.2",
"author": "youzan",
"license": "MIT",
"miniprogram": "lib",
"description": "轻量、可靠的小程序 UI 组件库",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "node build/dev.js",
"lint": "eslint ./packages --ext .js,.ts --fix && stylelint \"packages/**/*.less\" --fix",
"release": "sh build/release.sh",
"release:site": "sh build/release-site.sh",
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
"build:changelog": "vant changelog --tag v1.3.0 ./docs/markdown/changelog.generated.md",
"upload:weapp": "node build/upload.js"
},
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/youzan/vant-weapp.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "vant commit-lint"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
]
},
"homepage": "https://github.com/youzan/vant-weapp#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@vant/cli": "^1.0.3",
"@vant/doc": "^2.5.5",
"@vant/eslint-config": "^2.2.2",
"@vant/icons": "1.3.2",
"@vant/markdown-loader": "^2.3.0",
"@vant/stylelint-config": "^1.3.0",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.0.0",
"cross-env": "^7.0.0",
"css-loader": "^5.0.0",
"cssnano": "^4.1.10",
"eslint": "^6.1.0",
"gh-pages": "^3.0.0",
"gulp": "^4.0.2",
"gulp-insert": "^0.5.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"gulp-rename": "^2.0.0",
"html-webpack-plugin": "^4.0.0",
"less": "^3.9.0",
"less-loader": "^7.0.0",
"lint-staged": "^10.0.0",
"miniprogram-ci": "^1.0.27",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.0",
"prettier": "^2.0.5",
"progress-bar-webpack-plugin": "^2.0.0",
"style-loader": "^2.0.0",
"stylelint": "^13.0.0",
"tscpaths": "^0.0.9",
"typescript": "^4.0.0",
"vue": "2.6.10",
"vue-loader": "^15.7.1",
"vue-router": "^3.1.1",
"vue-template-compiler": "2.6.10",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-serve": "^2.0.3"
},
"prettier": {
"singleQuote": true,
"proseWrap": "never"
},
"browserslist": [
"Chrome >= 53",
"ChromeAndroid >= 53",
"iOS >= 8"
],
"dependencies": {
"@types/wechat-miniprogram": "^3.0.0"
}
}