package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "bootstrap-table",
  3. "description": "An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features. (supports twitter bootstrap v2 and v3).",
  4. "version": "1.13.0",
  5. "main": "./dist/bootstrap-table.js",
  6. "directories": {
  7. "doc": "docs"
  8. },
  9. "devDependencies": {
  10. "babel-cli": "^6.26.0",
  11. "babel-preset-babili": "^0.1.4",
  12. "babel-preset-env": "^1.7.0",
  13. "babel-preset-stage-0": "^6.24.1",
  14. "cssmin-cli": "^0.0.5",
  15. "eslint": "^4.19.1",
  16. "eslint-config-standard": "^11.0.0",
  17. "eslint-plugin-import": "^2.9.0",
  18. "eslint-plugin-node": "^6.0.1",
  19. "eslint-plugin-promise": "^3.7.0",
  20. "eslint-plugin-standard": "^3.0.1",
  21. "headr": "^0.0.4",
  22. "npm-run-all": "^4.1.5",
  23. "opencollective": "^1.0.3"
  24. },
  25. "scripts": {
  26. "postinstall": "opencollective postinstall || exit 0",
  27. "lint:js": "eslint src/bootstrap-table.js src/extensions/export/bootstrap-table-export.js src/extensions/toolbar/bootstrap-table-toolbar.js",
  28. "lint": "run-p lint:*",
  29. "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",
  30. "js:build:base": "babel src -d dist -q",
  31. "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",
  32. "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
  33. "js:build": "run-s js:build:*",
  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 clean *:build"
  40. },
  41. "repository": {
  42. "type": "git",
  43. "url": "https://github.com/wenzhixin/bootstrap-table.git"
  44. },
  45. "keywords": [
  46. "bootstrap",
  47. "table",
  48. "radio",
  49. "checkbox",
  50. "sort",
  51. "pagination",
  52. "editable"
  53. ],
  54. "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
  55. "license": "MIT",
  56. "bugs": {
  57. "url": "https://github.com/wenzhixin/bootstrap-table/issues"
  58. },
  59. "homepage": "http://bootstrap-table.wenzhixin.net.cn",
  60. "config": {
  61. "commitizen": {
  62. "path": "./node_modules/cz-conventional-changelog"
  63. }
  64. },
  65. "types": "./index.d.ts",
  66. "collective": {
  67. "type": "opencollective",
  68. "url": "https://opencollective.com/bootstrap-table",
  69. "logo": "https://opencollective.com/bootstrap-table/logo.txt"
  70. }
  71. }