| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "bootstrap-table",
- "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
- "version": "1.14.2",
- "main": "./dist/bootstrap-table.min.js",
- "directories": {
- "doc": "site"
- },
- "devDependencies": {
- "babel-cli": "^6.26.0",
- "babel-plugin-array-includes": "^2.0.3",
- "babel-plugin-object-entries-and-values-to-object-keys": "^1.0.1",
- "babel-plugin-transform-es2015-for-of": "^6.23.0",
- "babel-preset-babili": "^0.1.4",
- "babel-preset-env": "^1.7.0",
- "babel-preset-stage-0": "^6.24.1",
- "cssmin-cli": "^0.0.5",
- "eslint": "^4.19.1",
- "headr": "^0.0.4",
- "npm-run-all": "^4.1.5",
- "sass": "^1.16.1"
- },
- "scripts": {
- "lint": "eslint src/bootstrap-table.js src/locale src/extensions/export src/extensions/editable src/extensions/toolbar src/extensions/filter-control src/extensions/cookie",
- "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",
- "js:build:base": "babel src -d dist -q",
- "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",
- "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
- "js:build": "run-s js:build:*",
- "css:build:scss": "find src -name 'bootstrap-table*.scss' | sed -e 'p;s/scss/css/' | xargs -n2 sass",
- "css:build:base": "find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
- "css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
- "css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
- "css:build": "run-s css:build:*",
- "clean": "rm -rf dist",
- "build": "run-s lint clean *:build",
- "docs": "bundle exec jekyll build",
- "docs-serve": "bundle exec jekyll serve"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/wenzhixin/bootstrap-table.git"
- },
- "keywords": [
- "bootstrap",
- "table",
- "pagination",
- "checkbox",
- "radio",
- "datatables",
- "css",
- "css-framework",
- "semantic",
- "semantic-ui",
- "bulma",
- "material",
- "material-design",
- "materialize",
- "foundation"
- ],
- "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/wenzhixin/bootstrap-table/issues"
- },
- "homepage": "https://bootstrap-table.com",
- "types": "./index.d.ts"
- }
|