UNPKG

v-show-slide

Version:

Vue.js directive for animating element to and from height: auto in a sliding motion

87 lines (86 loc) 2.59 kB
{ "name": "v-show-slide", "version": "1.8.3", "description": "Vue.js directive for animating element to and from height: auto in a sliding motion", "main": "dist/v-show-slide.umd.js", "module": "dist/v-show-slide.esm.js", "unpkg": "dist/v-show-slide.min.js", "types": "dist/index.d.ts", "author": "Peter Hegman", "license": "GPL-3.0", "keywords": [ "Vue.js", "Vue", "animate", "v-show-slide", "v-show", "height auto", "css animations", "easing", "easings", "directive", "slide up", "slide down", "slideUp", "slideDown" ], "repository": { "type": "git", "url": "https://github.com/phegman/v-show-slide.git" }, "devDependencies": { "@types/jest": "^24.0.18", "@types/node": "^12.7.12", "@typescript-eslint/parser": "^2.1.0", "@vue/eslint-config-prettier": "^5.0.0", "@vue/eslint-config-typescript": "^4.0.0", "@vue/test-utils": "^1.0.0-beta.29", "babel-core": "7.0.0-bridge.0", "css-loader": "^3.2.0", "eslint": "^6.3.0", "eslint-plugin-prettier": "^3.1.0", "eslint-plugin-vue": "^5.2.3", "html-webpack-plugin": "^3.2.0", "husky": "^3.0.5", "jest": "^24.9.0", "node-sass": "^4.12.0", "prettier": "^1.18.2", "pretty-quick": "^1.11.1", "rimraf": "^3.0.0", "rollup": "^1.23.1", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^5.1.3", "rollup-plugin-typescript2": "^0.24.0", "sass-loader": "^8.0.0", "ts-jest": "^24.1.0", "ts-loader": "^6.0.4", "typescript": "^3.6.2", "vue": "^2.6.10", "vue-class-component": "^7.1.0", "vue-jest": "^3.0.5", "vue-loader": "^15.7.1", "vue-property-decorator": "^8.2.2", "vue-style-loader": "^4.1.2", "vue-template-compiler": "^2.6.10", "webpack": "^4.39.3", "webpack-cli": "^3.3.8", "webpack-dev-server": "^3.8.0" }, "scripts": { "build": "rimraf dist & yarn build:umd & yarn build:esm & yarn build:iife & yarn build:demo", "build:umd": "rollup --format umd --file dist/v-show-slide.umd.js --config", "build:esm": "rollup --format esm --file dist/v-show-slide.esm.js --config", "build:iife": "rollup --format iife --file dist/v-show-slide.min.js --config", "build:demo": "webpack --mode production", "lint": "./node_modules/.bin/eslint src/**/*.{vue,ts}", "dev": "webpack-dev-server --mode development", "test": "jest" }, "dependencies": {}, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } } }