UNPKG

vue-scroll-table

Version:

A Vue table component with fully customizable cells (using scoped slots), a sticky first column, horizontal scrolling and pagination.

58 lines (57 loc) 1.86 kB
{ "name": "vue-scroll-table", "version": "0.3.7", "description": "A Vue table component with fully customizable cells (using scoped slots), a sticky first column, horizontal scrolling and pagination.", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "dev": "vue serve --open ./example/App.vue", "build": "npm run build:umd & npm run build:es & npm run build:unpkg", "build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vue-scroll-table.umd.js --environment BUILD:production", "build:es": "rollup --config build/rollup.config.js --format es --file dist/vue-scroll-table.esm.js --environment BUILD:production", "build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vue-scroll-table.min.js --environment BUILD:production,SB_MINIFY" }, "main": "dist/vue-scroll-table.umd.js", "module": "dist/vue-scroll-table.esm.js", "unpkg": "dist/vue-scroll-table.min.js", "browser": { "./sfc": "src/ScrollTable.vue" }, "files": [ "dist" ], "author": "Jeroen Peerbolte <jeroen@stijlbreuk.nl>", "repository": { "type": "git", "url": "https://github.com/stijlbreuk/vue-scroll-table.git" }, "license": "MIT", "devDependencies": { "@vue/cli-plugin-eslint": "^3.1.3", "node-sass": "^4.12.0", "rollup": "^0.67.0", "rollup-plugin-buble": "^0.19.4", "rollup-plugin-node-resolve": "^3.4.0", "rollup-plugin-uglify": "^6.0.0", "rollup-plugin-vue": "^4.3.2", "sass-loader": "^7.1.0", "vue": "^2.5.17", "vue-template-compiler": "^2.5.17" }, "dependencies": { "@nodelib/fs.stat": "^2.0.5", "deepmerge": "2.2.1" }, "keywords": [ "vue", "vuejs", "vue.js", "table", "scroll", "sticky", "column", "customizable" ], "volta": { "node": "10.24.1" } }