package.json 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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.15.5",
  5. "main": "./dist/bootstrap-table.min.js",
  6. "directories": {
  7. "doc": "site"
  8. },
  9. "devDependencies": {
  10. "@babel/core": "^7.4.5",
  11. "@babel/preset-env": "^7.4.5",
  12. "chalk": "^2.4.2",
  13. "clean-css-cli": "^4.3.0",
  14. "core-js": "^3.1.4",
  15. "cross-env": "^6.0.3",
  16. "eslint": "^6.0.0",
  17. "esm": "^3.2.25",
  18. "foreach-cli": "^1.8.1",
  19. "glob": "^7.1.4",
  20. "headr": "^0.0.4",
  21. "node-sass": "^4.13.0",
  22. "npm-run-all": "^4.1.5",
  23. "rollup": "^1.16.2",
  24. "rollup-plugin-babel": "^4.3.3",
  25. "rollup-plugin-commonjs": "^10.0.0",
  26. "rollup-plugin-inject": "^3.0.0",
  27. "rollup-plugin-multi-entry": "^2.1.0",
  28. "rollup-plugin-node-resolve": "^5.0.4",
  29. "rollup-plugin-terser": "^5.1.2",
  30. "rollup-plugin-vue": "5.1.1",
  31. "safe-eval": "^0.4.1",
  32. "stylelint": "^10.1.0",
  33. "stylelint-config-standard": "^18.3.0",
  34. "vue-template-compiler": "^2.6.10"
  35. },
  36. "scripts": {
  37. "lint:js": "eslint src",
  38. "lint:css": "stylelint src/**/*.scss",
  39. "lint": "run-s lint:*",
  40. "docs:check:api": "cd tools && node check-api.js",
  41. "docs:check:locale": "cd tools && node check-locale.js",
  42. "docs:check": "run-s docs:check:*",
  43. "docs:serve": "bundle exec jekyll serve",
  44. "docs": "bundle exec jekyll build",
  45. "js:build:base": "rollup -c",
  46. "js:build:min": "cross-env NODE_ENV=production rollup -c",
  47. "js:build:banner": "foreach -g \"dist/**/*.min.js\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
  48. "js:build": "run-s js:build:*",
  49. "css:build:base": "node-sass --output-style expanded src -o dist",
  50. "css:build:min": "foreach -g \"dist/**/*.css\" -x \"cleancss --level 1 #{path} -o #{dir}/#{name}.min.css\"",
  51. "css:build:banner": "foreach -g \"dist/**/*.min.css\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
  52. "css:build": "run-s css:build:*",
  53. "clean": "rm -rf dist",
  54. "build": "run-s lint clean *:build",
  55. "pre-commit": "run-s lint docs:check"
  56. },
  57. "peerDependencies": {
  58. "jquery": "1.9.1 - 3"
  59. },
  60. "repository": {
  61. "type": "git",
  62. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  63. },
  64. "keywords": [
  65. "bootstrap",
  66. "table",
  67. "pagination",
  68. "checkbox",
  69. "radio",
  70. "datatables",
  71. "css",
  72. "css-framework",
  73. "semantic",
  74. "semantic-ui",
  75. "bulma",
  76. "material",
  77. "material-design",
  78. "materialize",
  79. "foundation"
  80. ],
  81. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  82. "license": "MIT",
  83. "bugs": {
  84. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  85. },
  86. "homepage": "https://bootstrap-table.com",
  87. "types": "./index.d.ts"
  88. }