mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
100 lines
1.9 KiB
JSON
100 lines
1.9 KiB
JSON
{
|
|
"name": "vant",
|
|
"version": "2.5.5",
|
|
"description": "Mobile UI Components built on Vue",
|
|
"main": "lib/index.js",
|
|
"module": "es/index.js",
|
|
"style": "lib/index.css",
|
|
"typings": "types/index.d.ts",
|
|
"files": [
|
|
"es",
|
|
"lib",
|
|
"types",
|
|
"vetur"
|
|
],
|
|
"scripts": {
|
|
"bootstrap": "yarn || npm i",
|
|
"dev": "vant-cli dev",
|
|
"lint": "vant-cli lint",
|
|
"test": "vant-cli test",
|
|
"build": "vant-cli build",
|
|
"release": "vant-cli release",
|
|
"test:watch": "vant-cli test --watch",
|
|
"release:site": "sh docs/site/release.sh",
|
|
"test:coverage": "open test/coverage/index.html"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "vant-cli commit-lint"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js,vue,less}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.{ts,tsx,js,vue}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
],
|
|
"*.{vue,css,less}": [
|
|
"stylelint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:youzan/vant.git"
|
|
},
|
|
"keywords": [
|
|
"vue",
|
|
"component"
|
|
],
|
|
"author": "youzanfe",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/runtime": "7.x",
|
|
"@vant/icons": "1.2.1",
|
|
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
|
|
"vue-lazyload": "1.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": ">= 2.5.22"
|
|
},
|
|
"devDependencies": {
|
|
"@vant/cli": "^2.2.6",
|
|
"vue": "^2.6.11",
|
|
"vue-template-compiler": "^2.6.11"
|
|
},
|
|
"sideEffects": [
|
|
"es/**/style/*",
|
|
"lib/**/style/*",
|
|
"*.css",
|
|
"*.less"
|
|
],
|
|
"vetur": {
|
|
"tags": "vetur/tags.json",
|
|
"attributes": "vetur/attributes.json"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@vant"
|
|
]
|
|
},
|
|
"stylelint": {
|
|
"extends": [
|
|
"@vant/stylelint-config"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"browserslist": [
|
|
"Android >= 4.0",
|
|
"iOS >= 8"
|
|
]
|
|
}
|