-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 1.02 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
{
"name": "bootstrap-5-vertical-tabs",
"version": "2.0.1",
"description": "Responsive vertical tabs navigation component for Bootstrap 5",
"main": "./dist/index.html",
"jsdelivr": "./dist/b5vtabs.min.css",
"scripts": {
"build-dev": "npm run css-compile && npm run css-minify",
"build": "npm ci && npm run css-compile && npm run css-minify && npm run sri-gen",
"css-compile": "sass index.scss --no-error-css --load-path=node_modules build/b5vtabs.css",
"css-minify": "cd build && cleancss -o ../dist/b5vtabs.min.css b5vtabs.css --source-map",
"test": "npm run build && npm run build-dev",
"sri-gen": "openssl dgst -sha384 -binary dist/b5vtabs.min.css | openssl base64 -A > dist/sha384.txt"
},
"keywords": [
"bootstrap",
"navigation",
"tabs"
],
"author": "Tromgy",
"repository": "https://github.com/tromgy/bootstrap-5-vertical-tabs.git",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.0.1",
"sass": "1.32.x"
},
"devDependencies": {
"clean-css-cli": "^5.3.0"
}
}