UNPKG

3.14 kBJSONView Raw
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.20.2",
5 "style": "dist/bootstrap-table.min.css",
6 "sass": "src/bootstrap-table.scss",
7 "main": "dist/bootstrap-table.min.js",
8 "directories": {
9 "doc": "site"
10 },
11 "devDependencies": {
12 "@babel/core": "^7.17.10",
13 "@babel/preset-env": "^7.17.10",
14 "@rollup/plugin-babel": "^5.3.1",
15 "@rollup/plugin-commonjs": "^22.0.0",
16 "@rollup/plugin-inject": "^4.0.4",
17 "@rollup/plugin-multi-entry": "^4.1.0",
18 "@rollup/plugin-node-resolve": "^13.3.0",
19 "chalk": "^4.0.0",
20 "clean-css-cli": "^5.6.0",
21 "core-js": "^3.22.5",
22 "cross-env": "^7.0.3",
23 "cypress": "^9.6.1",
24 "eslint": "^8.15.0",
25 "esm": "^3.2.25",
26 "foreach-cli": "^1.8.1",
27 "glob": "^8.0.2",
28 "headr": "^0.0.4",
29 "node-sass": "^7.0.1",
30 "npm-run-all": "^4.1.5",
31 "rimraf": "^3.0.2",
32 "rollup": "^2.72.1",
33 "rollup-plugin-copy": "^3.4.0",
34 "rollup-plugin-terser": "^7.0.2",
35 "rollup-plugin-vue": "5.1.9",
36 "stylelint": "^14.8.2",
37 "stylelint-config-standard": "^25.0.0",
38 "vue-template-compiler": "^2.6.14"
39 },
40 "scripts": {
41 "lint:js": "eslint src",
42 "lint:css": "stylelint src/**/*.scss",
43 "lint": "run-s lint:*",
44 "test": "cypress run --headless",
45 "docs:check:api": "cd tools && node check-api.js",
46 "docs:check:locale": "cd tools && node check-locale.js",
47 "docs:check": "run-s docs:check:*",
48 "docs:serve": "bundle exec jekyll serve",
49 "docs": "bundle exec jekyll build",
50 "js:build:base": "rollup -c",
51 "js:build:min": "cross-env NODE_ENV=production rollup -c",
52 "js:build:banner": "foreach -g \"dist/**/*.min.js\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
53 "js:build": "run-s js:build:*",
54 "css:build:src": "node-sass --output-style expanded src -o src",
55 "css:build:base": "node-sass --output-style expanded src -o dist",
56 "css:build:min": "foreach -g \"dist/**/*.css\" -x \"cleancss #{path} -o #{dir}/#{name}.min.css\"",
57 "css:build:banner": "foreach -g \"dist/**/*.min.css\" -x \"headr #{path} -o #{path} --version --homepage --author --license\"",
58 "css:build": "run-s css:build:*",
59 "clean": "rimraf dist",
60 "build": "run-s lint clean *:build",
61 "pre-commit": "run-s lint docs:check"
62 },
63 "peerDependencies": {
64 "jquery": "1.9.1 - 3"
65 },
66 "repository": {
67 "type": "git",
68 "url": "https://github.com/wenzhixin/bootstrap-table.git"
69 },
70 "keywords": [
71 "bootstrap",
72 "table",
73 "pagination",
74 "checkbox",
75 "radio",
76 "datatables",
77 "css",
78 "css-framework",
79 "semantic",
80 "semantic-ui",
81 "bulma",
82 "material",
83 "material-design",
84 "materialize",
85 "foundation"
86 ],
87 "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
88 "license": "MIT",
89 "bugs": {
90 "url": "https://github.com/wenzhixin/bootstrap-table/issues"
91 },
92 "homepage": "https://bootstrap-table.com",
93 "types": "./index.d.ts"
94}