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.18.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": "^4.0.0",
|
13 | "clean-css-cli": "^5.0.1",
|
14 | "core-js": "^3.1.4",
|
15 | "cross-env": "^7.0.2",
|
16 | "eslint": "^7.0.0",
|
17 | "esm": "^3.2.25",
|
18 | "foreach-cli": "^1.8.1",
|
19 | "glob": "^7.1.4",
|
20 | "headr": "^0.0.4",
|
21 | "node-sass": "^5.0.0",
|
22 | "npm-run-all": "^4.1.5",
|
23 | "rollup": "^2.6.1",
|
24 | "rollup-plugin-babel": "^4.3.3",
|
25 | "rollup-plugin-commonjs": "^10.0.0",
|
26 | "rollup-plugin-copy": "^3.3.0",
|
27 | "rollup-plugin-inject": "^3.0.0",
|
28 | "rollup-plugin-multi-entry": "^2.1.0",
|
29 | "rollup-plugin-node-resolve": "^5.0.4",
|
30 | "rollup-plugin-terser": "^7.0.0",
|
31 | "rollup-plugin-vue": "6.0.0",
|
32 | "stylelint": "^13.3.3",
|
33 | "stylelint-config-standard": "^21.0.0",
|
34 | "vue-template-compiler": "^2.6.10"
|
35 | },
|
36 | "scripts": {
|
37 | "lint:js": "eslint src",
|
38 | "lint:css": "stylelint src/**/*.scss",
|
39 | "lint": "run-s lint:*",
|
40 | "docs:check:api": "cd tools && node check-api.js",
|
41 | "docs:check:locale": "cd tools && node check-locale.js",
|
42 | "docs:check": "run-s docs:check:*",
|
43 | "docs:serve": "bundle exec jekyll serve",
|
44 | "docs": "bundle exec jekyll build",
|
45 | "js:build:base": "rollup -c",
|
46 | "js:build:min": "cross-env NODE_ENV=production rollup -c",
|
47 | "js:build:banner": "foreach -g \"dist/**/*.min.js\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
|
48 | "js:build": "run-s js:build:*",
|
49 | "css:build:src": "node-sass --output-style expanded src -o src",
|
50 | "css:build:base": "node-sass --output-style expanded src -o dist",
|
51 | "css:build:min": "foreach -g \"dist/**/*.css\" -x \"cleancss #{path} -o #{dir}/#{name}.min.css\"",
|
52 | "css:build:banner": "foreach -g \"dist/**/*.min.css\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
|
53 | "css:build": "run-s css:build:*",
|
54 | "clean": "rm -rf dist",
|
55 | "build": "run-s lint clean *:build",
|
56 | "pre-commit": "run-s lint docs:check"
|
57 | },
|
58 | "peerDependencies": {
|
59 | "jquery": "1.9.1 - 3"
|
60 | },
|
61 | "repository": {
|
62 | "type": "git",
|
63 | "url": "https://github.com/wenzhixin/bootstrap-table.git"
|
64 | },
|
65 | "keywords": [
|
66 | "bootstrap",
|
67 | "table",
|
68 | "pagination",
|
69 | "checkbox",
|
70 | "radio",
|
71 | "datatables",
|
72 | "css",
|
73 | "css-framework",
|
74 | "semantic",
|
75 | "semantic-ui",
|
76 | "bulma",
|
77 | "material",
|
78 | "material-design",
|
79 | "materialize",
|
80 | "foundation"
|
81 | ],
|
82 | "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
|
83 | "license": "MIT",
|
84 | "bugs": {
|
85 | "url": "https://github.com/wenzhixin/bootstrap-table/issues"
|
86 | },
|
87 | "homepage": "https://bootstrap-table.com",
|
88 | "types": "./index.d.ts"
|
89 | }
|