package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. "sass": "^1.16.1"
  26. },
  27. "scripts": {
  28. "lint": "eslint src",
  29. "js:build:base": "rollup -c",
  30. "js:build:min": "NODE_ENV=production rollup -c",
  31. "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
  32. "js:build": "run-s js:build:*",
  33. "css:build:scss": "find src -name 'bootstrap-table*.scss' | sed -e 'p;s/scss/css/' | xargs -n2 sass",
  34. "css:build:base": "find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
  35. "css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
  36. "css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
  37. "css:build": "run-s css:build:*",
  38. "clean": "rm -rf dist",
  39. "build": "run-s lint clean *:build",
  40. "docs": "bundle exec jekyll build",
  41. "docs-serve": "bundle exec jekyll serve"
  42. },
  43. "peerDependencies": {
  44. "jquery": "1.9.1 - 3"
  45. },
  46. "repository": {
  47. "type": "git",
  48. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  49. },
  50. "keywords": [
  51. "bootstrap",
  52. "table",
  53. "pagination",
  54. "checkbox",
  55. "radio",
  56. "datatables",
  57. "css",
  58. "css-framework",
  59. "semantic",
  60. "semantic-ui",
  61. "bulma",
  62. "material",
  63. "material-design",
  64. "materialize",
  65. "foundation"
  66. ],
  67. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  68. "license": "MIT",
  69. "bugs": {
  70. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  71. },
  72. "homepage": "https://bootstrap-table.com",
  73. "types": "./index.d.ts"
  74. }