mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
146 lines
3.6 KiB
JSON
146 lines
3.6 KiB
JSON
{
|
|
"name": "vant",
|
|
"version": "2.2.11",
|
|
"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": "npm run build:entry && webpack-dev-server --config build/webpack.site.dev.js",
|
|
"lint": "eslint ./src --ext .js,.vue,.ts,.tsx && stylelint \"src/**/*.less\" --fix",
|
|
"build:entry": "node build/build-entry.js",
|
|
"build:changelog": "vant changelog ./docs/markdown/changelog.generated.md --tag v2.1.0",
|
|
"build:lib": "node build/build-lib.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:clear-cache": "jest --clearCache",
|
|
"test:coverage": "open test/coverage/index.html",
|
|
"release": "sh build/release.sh",
|
|
"release:site": "sh build/release-site.sh"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"commit-msg": "vant commit-lint"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js,vue}": [
|
|
"eslint",
|
|
"git add"
|
|
],
|
|
"*.{vue,css,less}": [
|
|
"stylelint",
|
|
"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.1.15",
|
|
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
|
|
"vue-lazyload": "1.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": ">= 2.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.2",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
|
|
"@babel/plugin-syntax-jsx": "^7.2.0",
|
|
"@babel/plugin-transform-object-assign": "^7.0.0",
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
"@babel/polyfill": "^7.6.0",
|
|
"@babel/preset-env": "^7.6.2",
|
|
"@babel/preset-typescript": "^7.6.0",
|
|
"@types/jest": "^24.0.16",
|
|
"@vant/cli": "^1.0.6",
|
|
"@vant/doc": "^2.5.7",
|
|
"@vant/eslint-config": "^1.4.0",
|
|
"@vant/markdown-loader": "^2.2.0",
|
|
"@vant/markdown-vetur": "^1.0.0",
|
|
"@vant/stylelint-config": "^1.0.0",
|
|
"@vant/touch-emulator": "^1.1.0",
|
|
"@vue/babel-preset-jsx": "^1.1.0",
|
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
"autoprefixer": "^9.6.1",
|
|
"babel-jest": "^24.8.0",
|
|
"babel-loader": "^8.0.6",
|
|
"codecov": "^3.6.1",
|
|
"cross-env": "^6.0.0",
|
|
"css-loader": "^3.1.0",
|
|
"csso": "^3.5.1",
|
|
"dependency-tree": "^7.0.2",
|
|
"eslint": "^6.6.0",
|
|
"fast-glob": "^3.0.4",
|
|
"gh-pages": "2.0.1",
|
|
"html-webpack-plugin": "3.2.0",
|
|
"jest": "^24.8.0",
|
|
"jest-serializer-vue": "^2.0.2",
|
|
"less": "^3.8.1",
|
|
"less-loader": "^5.0.0",
|
|
"lint-staged": "^9.4.0",
|
|
"postcss": "^7.0.17",
|
|
"postcss-loader": "^3.0.0",
|
|
"style-loader": "^1.0.0",
|
|
"stylelint": "^11.0.0",
|
|
"ts-jest": "^24.0.2",
|
|
"typescript": "^3.5.3",
|
|
"uppercamelcase": "^3.0.0",
|
|
"vue": "^2.6.10",
|
|
"vue-jest": "4.0.0-beta.2",
|
|
"vue-loader": "^15.7.1",
|
|
"vue-router": "^3.1.2",
|
|
"vue-template-compiler": "^2.6.10",
|
|
"webpack": "^4.41.0",
|
|
"webpack-cli": "^3.3.6",
|
|
"webpack-dev-server": "3.8.0",
|
|
"webpack-merge": "^4.2.2"
|
|
},
|
|
"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
|
|
},
|
|
"browserslist": [
|
|
"Android >= 4.0",
|
|
"iOS >= 7"
|
|
]
|
|
}
|