-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 4.27 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@smolpack/bootstrap-extensions",
"version": "1.1.1",
"description": "Bootstrap-powered user interface and behaviour framework.",
"homepage": "https://smolsoftboi.github.io/bootstrap-extensions",
"repository": "https://github.com/SmolSoftBoi/bootstrap-extensions.git",
"author": "Kristian Matthews-Kennington <kristian@matthews-kennington.com>",
"sass": "scss/bootstrap-extension.scss",
"style": "dist/css/bootstrap-extension.css",
"scripts": {
"start": "npm-run-all watch docs-serve",
"css": "npm-run-all css-compile css-prefix css-rtl css-minify",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css --load-path node_modules scss/:dist/css/",
"css-rtl": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.js --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
"css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
"css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --rd",
"css-lint-vars": "fusv scss/ site/assets/scss/",
"css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
"css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
"css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
"css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint lockfile-lint",
"docs": "npm-run-all docs-build docs-lint",
"docs-build": "hugo --cleanDestinationDir",
"docs-compile": "npm run docs-build",
"docs-vnu": "node build/vnu-jar.js",
"docs-lint": "npm run docs-vnu",
"docs-serve": "hugo server --port 9001 --disableFastRender",
"docs-serve-only": "npx sirv-cli _site --port 9001",
"lockfile-lint": "lockfile-lint --allowed-hosts yarn --allowed-schemes https: --empty-hostname false --type yarn --path yarn.lock",
"release": "npm-run-all dist release-zip*",
"release-zip": "cross-env-shell \"rm -rf bootstrap-extensions-$npm_package_version-dist && cp -r dist/ bootstrap-$npm_package_version-dist && zip -r9 bootstrap-$npm_package_version-dist.zip bootstrap-$npm_package_version-dist && rm -rf bootstrap-$npm_package_version-dist\"",
"dist": "npm-run-all --aggregate-output --parallel css",
"test": "npm-run-all lint dist",
"predeploy": "npm-run-all dist docs-build",
"deploy": "gh-pages -d _site",
"watch": "npm-run-all --parallel watch-*",
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all css-lint css-compile css-prefix\"",
"watch-css-dist": "nodemon --watch dist/css/ --ext css --ignore \"dist/css/*.rtl.*\" --exec \"npm run css-rtl\"",
"watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\""
},
"devDependencies": {
"autoprefixer": "^10.4.12",
"bootstrap": "^5.3.0",
"clean-css-cli": "^5.6.1",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-xo": "^0.42.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-unicorn": "^44.0.0",
"find-unused-sass-variables": "^4.0.4",
"gh-pages": "^4.0.0",
"hugo-bin": "^0.101.2",
"lockfile-lint": "^4.10.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"rtlcss": "^4.0.0",
"sass": "^1.55.0",
"stylelint": "^15.10.1",
"stylelint-config-twbs-bootstrap": "^6.0.0",
"vnu-jar": "22.9.29"
},
"peerDependencies": {
"bootstrap": "^5.2.3"
},
"peerDependenciesMeta": {
"bootstrap": {
"optional": true
}
},
"files": [
"dist/{css}/*.{css,map}",
"scss/**/*.scss"
],
"hugo-bin": {
"buildTags": "extended"
}
}