package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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-cli": "^6.26.0",
  11. "babel-plugin-array-includes": "^2.0.3",
  12. "babel-plugin-object-entries-and-values-to-object-keys": "^1.0.1",
  13. "babel-plugin-transform-es2015-for-of": "^6.23.0",
  14. "babel-preset-babili": "^0.1.4",
  15. "babel-preset-env": "^1.7.0",
  16. "babel-preset-stage-0": "^6.24.1",
  17. "cssmin-cli": "^0.0.5",
  18. "eslint": "^4.19.1",
  19. "headr": "^0.0.4",
  20. "npm-run-all": "^4.1.5",
  21. "sass": "^1.16.1"
  22. },
  23. "scripts": {
  24. "lint": "eslint src/bootstrap-table.js src/locale src/extensions/export src/extensions/editable src/extensions/toolbar src/extensions/filter-control src/extensions/cookie",
  25. "js:build:min": "NODE_ENV=production babel src -d dist -q && find dist -name '*.js' | sed -e 'p;s/.js/.min.js/' | xargs -n2 mv",
  26. "js:build:base": "babel src -d dist -q",
  27. "js:build:concat": "babel src/locale -o dist/bootstrap-table-locale-all.js && NODE_ENV=production babel src/locale -o dist/bootstrap-table-locale-all.min.js",
  28. "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
  29. "js:build": "run-s js:build:*",
  30. "css:build:scss": "find src -name 'bootstrap-table*.scss' | sed -e 'p;s/scss/css/' | xargs -n2 sass",
  31. "css:build:base": "find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
  32. "css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
  33. "css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
  34. "css:build": "run-s css:build:*",
  35. "clean": "rm -rf dist",
  36. "build": "run-s lint clean *:build",
  37. "docs": "bundle exec jekyll build",
  38. "docs-serve": "bundle exec jekyll serve"
  39. },
  40. "repository": {
  41. "type": "git",
  42. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  43. },
  44. "keywords": [
  45. "bootstrap",
  46. "table",
  47. "pagination",
  48. "checkbox",
  49. "radio",
  50. "datatables",
  51. "css",
  52. "css-framework",
  53. "semantic",
  54. "semantic-ui",
  55. "bulma",
  56. "material",
  57. "material-design",
  58. "materialize",
  59. "foundation"
  60. ],
  61. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  62. "license": "MIT",
  63. "bugs": {
  64. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  65. },
  66. "homepage": "https://bootstrap-table.com",
  67. "types": "./index.d.ts"
  68. }