package.json 3.1 KB

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