package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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.21.2",
  5. "type": "module",
  6. "style": "dist/bootstrap-table.min.css",
  7. "sass": "src/bootstrap-table.scss",
  8. "main": "dist/bootstrap-table.min.js",
  9. "directories": {
  10. "doc": "site"
  11. },
  12. "devDependencies": {
  13. "@babel/core": "^7.20.12",
  14. "@babel/preset-env": "^7.20.2",
  15. "@rollup/plugin-babel": "^6.0.3",
  16. "@rollup/plugin-commonjs": "^24.0.1",
  17. "@rollup/plugin-inject": "^5.0.3",
  18. "@rollup/plugin-multi-entry": "^6.0.0",
  19. "@rollup/plugin-node-resolve": "^15.0.1",
  20. "@vue/compiler-sfc": "^3.2.45",
  21. "chalk": "^5.2.0",
  22. "clean-css-cli": "^5.6.2",
  23. "core-js": "^3.27.2",
  24. "cross-env": "^7.0.3",
  25. "cypress": "^12.4.1",
  26. "eslint": "^8.33.0",
  27. "esm": "^3.2.25",
  28. "foreach-cli": "^1.8.1",
  29. "glob": "^8.1.0",
  30. "headr": "^0.0.4",
  31. "node-sass": "^8.0.0",
  32. "npm-run-all": "^4.1.5",
  33. "rimraf": "^4.1.2",
  34. "rollup": "^3.12.0",
  35. "rollup-plugin-copy": "^3.4.0",
  36. "rollup-plugin-terser": "^7.0.2",
  37. "rollup-plugin-vue": "6.0.0",
  38. "stylelint": "^14.16.1",
  39. "stylelint-config-standard-scss": "^6.1.0",
  40. "vue-template-compiler": "^2.7.14"
  41. },
  42. "scripts": {
  43. "lint:js": "eslint src",
  44. "lint:css": "stylelint src/**/*.scss",
  45. "lint": "run-s lint:*",
  46. "test": "cypress run --headless",
  47. "docs:check:api": "cd tools && node check-api.js",
  48. "docs:check:locale": "cd tools && node check-locale.js",
  49. "docs:check": "run-s docs:check:*",
  50. "docs:serve": "bundle exec jekyll serve",
  51. "docs": "bundle exec jekyll build",
  52. "js:build:base": "rollup -c",
  53. "js:build:min": "cross-env NODE_ENV=production rollup -c",
  54. "js:build:banner": "foreach -g \"dist/**/*.min.js\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
  55. "js:build": "run-s js:build:*",
  56. "css:build:src": "node-sass --output-style expanded src -o src",
  57. "css:build:base": "node-sass --output-style expanded src -o dist",
  58. "css:build:min": "foreach -g \"dist/**/*.css\" -x \"cleancss #{path} -o #{dir}/#{name}.min.css\"",
  59. "css:build:banner": "foreach -g \"dist/**/*.min.css\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
  60. "css:build": "run-s css:build:*",
  61. "clean": "rimraf dist",
  62. "build": "run-s lint clean *:build",
  63. "pre-commit": "run-s lint docs:check"
  64. },
  65. "peerDependencies": {
  66. "jquery": "3"
  67. },
  68. "repository": {
  69. "type": "git",
  70. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  71. },
  72. "keywords": [
  73. "bootstrap",
  74. "table",
  75. "pagination",
  76. "checkbox",
  77. "radio",
  78. "datatables",
  79. "css",
  80. "css-framework",
  81. "semantic",
  82. "semantic-ui",
  83. "bulma",
  84. "material",
  85. "material-design",
  86. "materialize",
  87. "foundation"
  88. ],
  89. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  90. "license": "MIT",
  91. "bugs": {
  92. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  93. },
  94. "homepage": "https://bootstrap-table.com",
  95. "types": "./index.d.ts"
  96. }