-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "bs-wilds",
"version": "0.0.1",
"description": "getwilds custom Bootstrap",
"author": "Fred Hutch Cancer Center Office of the Chief Data Officer",
"license": "MIT",
"main": "css/custom.css",
"scripts": {
"build-css": "sass scss/custom.scss dist/css/custom.css --style=compressed --source-map",
"build-css-dev": "sass scss/custom.scss dist/css/custom.css --style=expanded --source-map",
"watch": "sass --watch scss/custom.scss dist/css/custom.css --style=expanded --source-map",
"copy-js": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js dist/js/ && cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map dist/js/",
"build": "npm run build-css && npm run copy-js",
"dev": "npm run build-css-dev && npm run copy-js && npm run watch"
},
"keywords": [
"bootstrap",
"css",
"framework",
"custom"
],
"dependencies": {
"bootstrap": "^5.3.8"
},
"devDependencies": {
"sass": "^1.77.0"
},
"files": [
"dist/css/",
"dist/js/",
"scss/"
]
}