package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "bootstrap-table",
  3. "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
  4. "version": "1.14.2",
  5. "main": "./dist/bootstrap-table.min.js",
  6. "directories": {
  7. "doc": "site"
  8. },
  9. "devDependencies": {
  10. "@babel/core": "^7.4.3",
  11. "@babel/preset-env": "^7.4.3",
  12. "core-js": "^3.0.0",
  13. "cssmin-cli": "^0.0.5",
  14. "eslint": "^4.19.1",
  15. "glob": "^7.1.3",
  16. "headr": "^0.0.4",
  17. "npm-run-all": "^4.1.5",
  18. "rollup": "^1.8.0",
  19. "rollup-plugin-babel": "^4.3.2",
  20. "rollup-plugin-babel-minify": "^8.0.0",
  21. "rollup-plugin-commonjs": "^9.3.4",
  22. "rollup-plugin-inject": "^2.2.0",
  23. "rollup-plugin-multi-entry": "^2.1.0",
  24. "rollup-plugin-node-resolve": "^4.0.1",
  25. "rollup-plugin-vue": "^5.0.0",
  26. "sass": "^1.16.1",
  27. "vue-template-compiler": "^2.6.10"
  28. },
  29. "scripts": {
  30. "lint": "eslint src",
  31. "js:build:base": "rollup -c",
  32. "js:build:min": "NODE_ENV=production rollup -c",
  33. "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
  34. "js:build": "run-s js:build:*",
  35. "css:build:scss": "find src -name 'bootstrap-table*.scss' | sed -e 'p;s/scss/css/' | xargs -n2 sass",
  36. "css:build:base": "find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
  37. "css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
  38. "css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
  39. "css:build": "run-s css:build:*",
  40. "clean": "rm -rf dist",
  41. "build": "run-s lint clean *:build",
  42. "docs": "bundle exec jekyll build",
  43. "docs-serve": "bundle exec jekyll serve"
  44. },
  45. "peerDependencies": {
  46. "jquery": "1.9.1 - 3"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  51. },
  52. "keywords": [
  53. "bootstrap",
  54. "table",
  55. "pagination",
  56. "checkbox",
  57. "radio",
  58. "datatables",
  59. "css",
  60. "css-framework",
  61. "semantic",
  62. "semantic-ui",
  63. "bulma",
  64. "material",
  65. "material-design",
  66. "materialize",
  67. "foundation"
  68. ],
  69. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  70. "license": "MIT",
  71. "bugs": {
  72. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  73. },
  74. "homepage": "https://bootstrap-table.com",
  75. "types": "./index.d.ts"
  76. }