package.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. "stylelint": "^10.1.0",
  28. "stylelint-config-standard": "^18.3.0",
  29. "vue-template-compiler": "^2.6.10",
  30. "chalk": "^2.4.2",
  31. "esm": "^3.2.25",
  32. "safe-eval": "^0.4.1"
  33. },
  34. "scripts": {
  35. "lint:js": "eslint src",
  36. "lint:css": "stylelint src/**/*.scss",
  37. "lint": "run-s lint:*",
  38. "docs:check:api": "cd tools && node check-api.js",
  39. "docs:check:locale": "cd tools && node check-locale.js",
  40. "docs:check": "run-s docs:check:*",
  41. "docs:serve": "bundle exec jekyll serve",
  42. "docs": "bundle exec jekyll build",
  43. "js:build:base": "rollup -c",
  44. "js:build:min": "NODE_ENV=production rollup -c",
  45. "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
  46. "js:build": "run-s js:build:*",
  47. "css:build:scss": "find src -name 'bootstrap-table*.scss' | sed -e 'p;s/scss/css/' | xargs -n2 sass",
  48. "css:build:base": "find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
  49. "css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
  50. "css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
  51. "css:build": "run-s css:build:*",
  52. "clean": "rm -rf dist",
  53. "build": "run-s lint clean *:build",
  54. "pre-commit": "run-s lint docs:check"
  55. },
  56. "peerDependencies": {
  57. "jquery": "1.9.1 - 3"
  58. },
  59. "repository": {
  60. "type": "git",
  61. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  62. },
  63. "keywords": [
  64. "bootstrap",
  65. "table",
  66. "pagination",
  67. "checkbox",
  68. "radio",
  69. "datatables",
  70. "css",
  71. "css-framework",
  72. "semantic",
  73. "semantic-ui",
  74. "bulma",
  75. "material",
  76. "material-design",
  77. "materialize",
  78. "foundation"
  79. ],
  80. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  81. "license": "MIT",
  82. "bugs": {
  83. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  84. },
  85. "homepage": "https://bootstrap-table.com",
  86. "types": "./index.d.ts"
  87. }