forked from youzan/vant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.57 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vant",
"version": "1.1.10",
"description": "Lightweight Mobile UI Components built on Vue",
"main": "lib/index.js",
"module": "es/index.js",
"style": "lib/vant-css/index.css",
"typings": "types/index.d.ts",
"files": [
"es",
"lib",
"packages",
"types"
],
"scripts": {
"bootstrap": "yarn || npm i && cd ./packages/vant-css/ && yarn || npm i && cd ../../",
"dev": "npm run build:file && webpack-serve --config build/webpack.dev.js",
"lint": "eslint ./packages --ext .js,.vue && stylelint \"packages/vant-css/src/*.css\"",
"build:file": "node build/build-entry.js",
"build:components": "node build/build-components.js --color",
"build:vant-css": "gulp build --gulpfile packages/vant-css/gulpfile.js --color --silent",
"build:vant": "cross-env NODE_ENV=production webpack --color --config build/webpack.build.js && cross-env NODE_ENV=production webpack -p --color --config build/webpack.build.js",
"build:style-entry": "node build/build-style-entry.js",
"build:changelog": "sh build/build-changelog.sh",
"build:iconfont": "gulp --gulpfile ./build/build-iconfont.js",
"build:lib": "node build/build-lib.js",
"build:site": "rimraf docs/dist && cross-env NODE_ENV=production webpack --config build/webpack.doc.js && gh-pages -d docs/dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "open test/coverage/index.html",
"release": "sh build/release.sh",
"precommit": "lint-staged"
},
"lint-staged": {
"./packages/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git@github.com:youzan/vant.git"
},
"keywords": [
"youzan",
"vue",
"component"
],
"author": "youzanfe",
"license": "MIT",
"dependencies": {
"babel-runtime": "6.x",
"vue-lazyload": "^1.2.6"
},
"peerDependencies": {
"vue": ">= 2.5.0"
},
"devDependencies": {
"@vue/server-test-utils": "^1.0.0-beta.20",
"@vue/test-utils": "^1.0.0-beta.20",
"autoprefixer": "^8.6.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"dependency-tree": "^6.1.0",
"eslint": "^5.0.1",
"eslint-plugin-vue-libs": "^3.0.0",
"fast-glob": "^2.2.2",
"fast-vue-md-loader": "^1.0.3",
"gh-pages": "^1.2.0",
"gulp": "^3.9.1",
"gulp-iconfont": "^10.0.1",
"gulp-iconfont-css": "^2.1.0",
"html-webpack-plugin": "3.2.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^7.2.0",
"md5-file": "^4.0.0",
"postcss": "^6.0.23",
"postcss-calc": "^6.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^2.1.5",
"precss": "2.0.0",
"progress-bar-webpack-plugin": "^1.11.0",
"rimraf": "^2.5.4",
"shelljs": "^0.8.1",
"signale": "^1.2.1",
"style-loader": "^0.21.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"uppercamelcase": "^3.0.0",
"url-loader": "^1.0.1",
"vant-doc": "1.0.7",
"vue": "2.5.16",
"vue-jest": "^2.6.0",
"vue-loader": "^15.2.4",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vue-sfc-compiler": "^0.0.8",
"vue-template-compiler": "2.5.16",
"vue-template-es2015-compiler": "^1.6.0",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-serve": "^1.0.4"
}
}