tableexport
Version:
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files
67 lines (66 loc) • 1.59 kB
JSON
{
"name": "tableexport",
"version": "5.2.0",
"author": "Travis Clarke <travis.m.clarke@gmail.com> (https://www.travismclarke.com/)",
"description": "The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files",
"main": "dist/js/tableexport.js",
"typings": "dist/tableexport.d.ts",
"style": [
"dist/css/tableexport.css"
],
"keywords": [
"tableexport",
"table",
"export",
"Excel",
"xlsx",
"xls",
"csv",
"txt",
"jquery-plugin",
"ecosystem:jquery"
],
"scripts": {
"build": "gulp build",
"prettier": "prettier --write './src/stable/**/*.{js,css,md}'",
"test": "gulp test",
"prep": "yarn prettier && yarn build",
"prepublishOnly": "yarn prep && sh ./publish.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/clarketm/TableExport"
},
"bugs": {
"url": "https://github.com/clarketm/TableExport/issues"
},
"peerDependencies": {
"bootstrap": ">= 3 < 4",
"jquery": ">= 1.1.2"
},
"dependencies": {
"blobjs": "^1.1.1",
"file-saverjs": "^1.3.6",
"xlsx": "^0.14.0"
},
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-bump": "^3.1.1",
"gulp-clean-css": "^4.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"gulp-uglify": "^3.0.1",
"jasmine": "^3.3.0",
"prettier": "^1.15.2"
},
"license": "Apache-2.0",
"homepage": "https://tableexport.travismclarke.com/",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}