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.15.3",
|
5 | "main": "./dist/bootstrap-table.min.js",
|
6 | "directories": {
|
7 | "doc": "site"
|
8 | },
|
9 | "devDependencies": {
|
10 | "@babel/core": "^7.4.5",
|
11 | "@babel/preset-env": "^7.4.5",
|
12 | "chalk": "^2.4.2",
|
13 | "core-js": "^3.1.4",
|
14 | "cssmin-cli": "^0.0.5",
|
15 | "eslint": "^6.0.0",
|
16 | "esm": "^3.2.25",
|
17 | "glob": "^7.1.4",
|
18 | "headr": "^0.0.4",
|
19 | "npm-run-all": "^4.1.5",
|
20 | "rollup": "^1.16.2",
|
21 | "rollup-plugin-babel": "^4.3.3",
|
22 | "rollup-plugin-babel-minify": "^8.0.0",
|
23 | "rollup-plugin-commonjs": "^10.0.0",
|
24 | "rollup-plugin-inject": "^3.0.0",
|
25 | "rollup-plugin-multi-entry": "^2.1.0",
|
26 | "rollup-plugin-node-resolve": "^5.0.4",
|
27 | "rollup-plugin-vue": "^5.0.0",
|
28 | "safe-eval": "^0.4.1",
|
29 | "sass": "^1.21.0",
|
30 | "stylelint": "^10.1.0",
|
31 | "stylelint-config-standard": "^18.3.0",
|
32 | "vue-template-compiler": "^2.6.10"
|
33 | },
|
34 | "scripts": {
|
35 | "lint:js": "eslint src",
|
36 | "lint:css": "stylelint src/**/*.scss && stylelint src/extensions/**/*.css",
|
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 | }
|