mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-05-17 06:59:40 +03:00
98 lines
2.9 KiB
JSON
98 lines
2.9 KiB
JSON
{
|
|
"name": "vue2-datepicker",
|
|
"description": "A Datepicker Component For Vue2",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"version": "2.4.2",
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --open --config build/webpack.dev.config.js",
|
|
"demo": "cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.demo.config.js",
|
|
"build": "npm run lint && npm test && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.deploy.config.js",
|
|
"lint": "eslint src/**/* test/**/*",
|
|
"test:push": "jest --coverage --coverageReporters=text-lcov | coveralls",
|
|
"test": "jest",
|
|
"release": "bash build/release.sh"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"vue"
|
|
],
|
|
"transform": {
|
|
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
|
|
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
|
|
},
|
|
"moduleNameMapper": {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mengxiong10/vue2-datepicker.git"
|
|
},
|
|
"keywords": [
|
|
"vue",
|
|
"datepicker"
|
|
],
|
|
"author": "xiemengxiong",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mengxiong10/vue2-datepicker/issues"
|
|
},
|
|
"homepage": "https://github.com/mengxiong10/vue2-datepicker#readme",
|
|
"dependencies": {
|
|
"fecha": "^2.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/test-utils": "^1.0.0-beta.20",
|
|
"autoprefixer": "^7.2.6",
|
|
"babel-core": "^6.26.3",
|
|
"babel-eslint": "^8.2.3",
|
|
"babel-helper-vue-jsx-merge-props": "^2.0.3",
|
|
"babel-jest": "^23.0.1",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-plugin-jsx-v-model": "^2.0.3",
|
|
"babel-plugin-syntax-jsx": "^6.18.0",
|
|
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"babel-preset-stage-3": "^6.24.1",
|
|
"coveralls": "^3.0.1",
|
|
"cross-env": "^5.1.6",
|
|
"css-loader": "^0.25.0",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-standard": "^11.0.0",
|
|
"eslint-friendly-formatter": "^3.0.0",
|
|
"eslint-loader": "^2.0.0",
|
|
"eslint-plugin-import": "^2.12.0",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"eslint-plugin-promise": "^3.8.0",
|
|
"eslint-plugin-standard": "^3.1.0",
|
|
"eslint-plugin-vue": "^4.5.0",
|
|
"file-loader": "^1.1.11",
|
|
"highlight.js": "^9.12.0",
|
|
"jest": "^23.0.1",
|
|
"mini-css-extract-plugin": "^0.4.0",
|
|
"node-sass": "^4.9.0",
|
|
"optimize-css-assets-webpack-plugin": "^4.0.2",
|
|
"postcss-loader": "^2.1.5",
|
|
"sass-loader": "^6.0.7",
|
|
"vue": "^2.5.16",
|
|
"vue-jest": "^2.6.0",
|
|
"vue-loader": "^15.2.1",
|
|
"vue-template-compiler": "^2.5.16",
|
|
"webpack": "^4.9.1",
|
|
"webpack-cli": "^2.1.4",
|
|
"webpack-dev-server": "^3.1.4",
|
|
"webpack-merge": "^4.1.2"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|