-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.74 KB
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
{
"title": "Bootstrap CSS Tooltips",
"name": "bootstrap-css-tooltips",
"description": "Bootstrap CSS tooltips are based on CSS only and support HTML content and Bootstrap colors.",
"version": "2.0.0",
"date": "2026-02-24",
"license": "MIT <https://github.com/glewe/bootstrap-css-tooltips/blob/master/LICENSE>",
"author": "George Lewe",
"homepage": "https://lewe.com",
"repository": {
"type": "git",
"url": "https://github.com/glewe/bootstrap-css-tooltips"
},
"bugs": {
"url": "https://github.com/glewe/bootstrap-css-tooltips/issues"
},
"scripts": {
"bsync": "browser-sync start --server dist --files \"dist/css/*.css, dist/*.html\" --no-notify --no-open --no-ui --port 3000",
"prebuild": "node build-vars.js",
"build": "npm-run-all copy css html",
"copy": "npm-run-all copy-img copy-js",
"copy-img": "copyfiles --flat src/assets/img/* dist/img",
"copy-js": "copyfiles --flat src/assets/js/* dist/js",
"css": "npm-run-all css-lint css-compile css-minify",
"css-compile": "sass --quiet --style expanded --load-path=\"node_modules\" --source-map --embed-sources --no-error-css src/scss/:dist/css/",
"css-lint": "stylelint \"src/scss/*.scss\" --cache --cache-location .cache/.stylelintcache --rd",
"css-minify": "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\"",
"dev": "concurrently --kill-others \"npm run watch\" \"npm run bsync\" ",
"html": "npm-run-all html-lint html-minify",
"html-beautify": "js-beautify --config .jsbeautifyrc.json --file \"dist/**/*.html\"",
"html-copy": "copyfiles --flat src/html/* dist",
"html-lint": "linthtml \"src/html/**/*.html\"",
"html-minify": "html-minifier --config-file .htmlminrc.json --input-dir \"src/html\" --output-dir \"dist\"",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel css-lint html-lint lockfile-lint",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"watch": "nodemon --watch src --ext \"scss,html,js,jpg,png\" --exec \"npm run build\""
},
"dependencies": {
"bootstrap": "^5.3.8",
"clean-css-cli": "^5.6.3",
"concurrently": "^9.2.1",
"copyfiles": "^2.4.1",
"express": "^5.1.0",
"html-minifier-security-fix": "^4.0.0",
"js-beautify": "^1.15.4",
"lockfile-lint": "^4.14.1",
"nodemon": "^3.1.11",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"sass": "^1.94.2",
"stylelint": "^16.26.0",
"stylelint-config-twbs-bootstrap": "^16.1.0",
"terser": "^5.44.0"
},
"devDependencies": {
"@linthtml/linthtml": "^0.10.2"
}
}