-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 4.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@trimble-oss/modus-bootstrap",
"description": "Modus Bootstrap 2 based on Bootstrap v5.x",
"version": "2.0.7",
"config": {
"version_short": "2.0"
},
"homepage": "https://modus-bootstrap.trimble.com/",
"author": "Trimble",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/trimble-oss/modus-bootstrap.git"
},
"bugs": {
"url": "https://github.com/trimble-oss/modus-bootstrap/issues"
},
"sass": "scss/modus-bootstrap.scss",
"style": "dist/css/modus-bootstrap.css",
"scripts": {
"start": "npm-run-all --parallel watch docs-serve",
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"css": "npm-run-all css-compile css-prefix css-minify-main",
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css scss/:dist/css/",
"css-rtl": "",
"css-lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint-*",
"css-lint-stylelint": "stylelint \"**/*.{css,scss}\" --cache --cache-location .cache/.stylelintcache --fix",
"css-lint-vars": "",
"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": "",
"css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
"css-prefix-main": "postcss --config build/postcss.config.mjs --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
"css-prefix-examples": "postcss --config build/postcss.config.mjs --replace \"site/content/**/*.css\"",
"css-test": "jasmine --config=scss/tests/jasmine.js",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives --ext .js .",
"js-minify": "terser ---ecma 5 --keep-classnames --output dist/js/modus-layout.min.js -- js/modus-layout.js",
"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": "",
"docs-serve": "hugo server --port 9001 --disableFastRender --navigateToChanged",
"docs-serve-only": "npx sirv-cli _site --port 9001",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"update-deps": "ncu -u -x globby,jasmine,karma-browserstack-launcher,karma-rollup-preprocessor && echo Manually update site/assets/js/vendor",
"release": "npm-run-all dist docs-build",
"release-sri": "node build/generate-sri.mjs",
"release-version": "node build/change-version.mjs",
"dist": "npm-run-all --aggregate-output --parallel css",
"test": "npm-run-all lint dist docs-build docs-lint",
"netlify": "npm-run-all dist release-sri docs-build",
"watch": "npm-run-all --parallel watch-css-*",
"watch-css-main": "nodemon --watch scss/ --ext scss --exec \"npm-run-all 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",
"watch-js-docs": "",
"delete-unneeded-templates": "npx rimraf node_modules/@trimble-oss/modus-docs-hugo-theme/layouts/partials/col-sidebar-*.html"
},
"dependencies": {
"bootstrap": "5.3.3"
},
"devDependencies": {
"@stackblitz/sdk": "^1.11.0",
"@trimble-oss/modus-docs-hugo-theme": "1.0.0-alpha27",
"@trimble-oss/modus-icons": "^1.15.0",
"autoprefixer": "^10.4.20",
"bootstrap-print-css": "^1.0.1",
"bundlewatch": "^0.4.0",
"clean-css-cli": "^5.6.3",
"clipboard": "^2.0.11",
"cross-env": "^7.0.3",
"eslint": "8.57.1",
"eslint-config-xo": "^0.45.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-unicorn": "^55.0.0",
"find-unused-sass-variables": "^6.0.0",
"globby": "^14.0.2",
"hammer-simulator": "0.0.1",
"hugo-bin": "^0.133.1",
"ip": "^2.0.1",
"lockfile-lint": "^4.14.0",
"nodemon": "^3.1.7",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-drop-empty-css-vars": "^0.0.0",
"rtlcss": "^4.3.0",
"sass": "1.78.0",
"sass-true": "^8.1.0",
"shelljs": "^0.8.5",
"stylelint": "^16.10.0",
"stylelint-config-twbs-bootstrap": "^15.1.0",
"terser": "^5.36.0",
"vnu-jar": "23.4.11"
},
"files": [
"dist/{css,js}/*.{css,js,map}",
"js/*.{js}",
"scss/**/*.scss",
"!scss/tests/**"
],
"hugo-bin": {
"buildTags": "extended"
},
"volta":{
"node": "18.20.4"
}
}