UNPKG

2.64 kBJSONView Raw
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.14.2",
5 "main": "./dist/bootstrap-table.min.js",
6 "directories": {
7 "doc": "docs"
8 },
9 "devDependencies": {
10 "babel-cli": "^6.26.0",
11 "babel-plugin-array-includes": "^2.0.3",
12 "babel-plugin-object-entries-and-values-to-object-keys": "^1.0.1",
13 "babel-plugin-transform-es2015-for-of": "^6.23.0",
14 "babel-preset-babili": "^0.1.4",
15 "babel-preset-env": "^1.7.0",
16 "babel-preset-stage-0": "^6.24.1",
17 "cssmin-cli": "^0.0.5",
18 "eslint": "^4.19.1",
19 "headr": "^0.0.4",
20 "npm-run-all": "^4.1.5",
21 "sass": "^1.16.1"
22 },
23 "scripts": {
24 "lint": "eslint src/bootstrap-table.js src/locale src/extensions/export src/extensions/editable src/extensions/toolbar src/extensions/filter-control src/extensions/cookie",
25 "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",
26 "js:build:base": "babel src -d dist -q",
27 "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",
28 "js:build:banner": "find dist -name '*.min.js' -exec headr {} -o {} --version --homepage --author --license \\;",
29 "js:build": "run-s js:build:*",
30 "css:build:scss": "find src -name 'bootstrap-table*.scss' | sed -e 'p;s/scss/css/' | xargs -n2 sass",
31 "css:build:base": "find src -name '*.css' | sed -e 'p;s/src/dist/' | xargs -n2 cp",
32 "css:build:min": "find dist -name '*.css' | sed -e 'p;s/.css/.min.css/' | xargs -n2 cssmin",
33 "css:build:banner": "find dist -name '*.min.css' -exec headr {} -o {} --version --homepage --author --license \\;",
34 "css:build": "run-s css:build:*",
35 "clean": "rm -rf dist",
36 "build": "run-s lint clean *:build",
37 "docs": "bundle exec jekyll build",
38 "docs-serve": "bundle exec jekyll serve"
39 },
40 "repository": {
41 "type": "git",
42 "url": "https://github.com/wenzhixin/bootstrap-table.git"
43 },
44 "keywords": [
45 "bootstrap",
46 "table",
47 "radio",
48 "checkbox",
49 "sort",
50 "pagination",
51 "editable"
52 ],
53 "author": "wenzhixin <wenzhixin2010@gmail.com> (http://wenzhixin.net.cn/)",
54 "license": "MIT",
55 "bugs": {
56 "url": "https://github.com/wenzhixin/bootstrap-table/issues"
57 },
58 "homepage": "https://bootstrap-table.com",
59 "config": {
60 "commitizen": {
61 "path": "./node_modules/cz-conventional-changelog"
62 }
63 },
64 "types": "./index.d.ts"
65}