b-components-js
Version:
Generate Bootstrap components through JavaScript
84 lines (83 loc) • 2.56 kB
JSON
{
"name": "b-components-js",
"version": "0.0.2",
"description": "Generate Bootstrap components through JavaScript",
"main": "dist/b.bundle.js",
"module": "dist/b.bundle.esm.js",
"scripts": {
"release": "npm-run-all lint compile test bundlewatch",
"lint": "npm-run-all --aggregate-output -p lint-*",
"lint-js": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"fix-lint": "npm-run-all --aggregate-output -p fix-lint-*",
"fix-lint-js": "eslint --fix .",
"compile": "npm-run-all --aggregate-output -p compile-*",
"compile-js": "node build/rollup.js",
"dev": "npm-run-all dev-js",
"dev-js": "cross-env NODE_ENV=development \"npm run compile-js\"",
"watch": "npm-run-all --aggregate-output -p watch-*",
"watch-js": "nodemon --watch src/ --ext js --exec \"npm-run-all -s lint-js compile-js\"",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"test": "npm-run-all --aggregate-output -p test-*",
"test-js": "",
"deprecatePreviousVersion": "npm deprecate b-components-js@'< 0.0.1' 'New version has been released'"
},
"repository": {
"type": "git",
"url": "git@github.com:ZhangChengLin/b-components.git"
},
"github": "https://github.com/ZhangChengLin/b-components",
"homepage": "https://ZhangChengLin.github.io/b-components",
"bugs": {
"url": "https://github.com/ZhangChengLin/b-components/issues"
},
"keywords": [
"bootstrap",
"bootstrap5",
"components",
"Modal",
"Offcanvas",
"Toast",
"Alert",
"Carousel",
"Collapse",
"Dropdown",
"Progress",
"Scrollspy",
"Tab"
],
"author": {
"name": "ZhangChengLin",
"email": "469946668@qq.com",
"url": "https://ZhangChengLin.github.io"
},
"license": "MIT",
"engines": {},
"peerDependencies": {
"bootstrap": "^5.x"
},
"dependencies": {
"bootstrap": "^5.1.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"bundlewatch": "^0.3.3",
"chalk": "<5.*",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-xo": "^0.40.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-unicorn": "^41.0.0",
"html-minifier-terser": "^7.0.0-alpha.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rollup": "^2.68.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.11.0"
},
"files": [
"dist/**/*.{js,css,map}",
"src/**/*.js"
]
}