-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
27 lines (27 loc) · 944 Bytes
/
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
{
"name": "bootstrap-4-vertical-tabs",
"version": "1.0.7",
"description": "Responsive vertical tabs navigation component for Bootstrap 4",
"main": "index.html",
"scripts": {
"build-dev": "node-sass --importer node_modules/node-sass-import --source-map true index.scss dist/b4vtabs.css",
"build": "npm ci && node-sass --importer node_modules/node-sass-import --output-style compressed --source-map true index.scss dist/b4vtabs.min.css",
"test": "npm run build && npm run build-dev",
"sri-gen": "openssl dgst -sha384 -binary dist/b4vtabs.min.css | openssl base64 -A > dist/sha384.min.txt"
},
"keywords": [
"bootstrap",
"navigation",
"tabs"
],
"author": "Tromgy",
"repository": "https://github.com/tromgy/bootstrap-4-vertical-tabs.git",
"license": "MIT",
"devDependencies": {
"node-sass": "^7.0.0",
"node-sass-import": "^2.0.1"
},
"dependencies": {
"bootstrap": "^4.6.0"
}
}