-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.14 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.14 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
{
"name": "kungbib-styles",
"version": "2.2.0",
"description": "Stylesheets for use in development at the National Library of Sweden",
"files": [
"lib/"
],
"repository": "git@github.com:Kungbib/styles.git",
"author": "Ola Blissing <ola.blissing@gmail.com>",
"contributors": [
"Mattias Bolin <bolin.mattias@gmail.com>",
"Ola Blissing <ola.blissing@gmail.com>",
"Krzysztof Bergendahl <krzysztof.bergendahl@gmail.com>"
],
"license": "Apache-2.0",
"dependencies": {
"bootstrap": "^5.1.3"
},
"scripts": {
"prepack": "yarn run clear_lib && yarn run copy_sass && yarn run build_styles && yarn run build_assets",
"clear_lib": "rm -rf ./lib && mkdir ./lib",
"copy_sass": "cp -r ./src/styles/. ./lib/scss",
"build_styles": "sass ./src/styles/theme.scss ./lib/css/theme.css",
"build_assets": "mkdir ./lib/assets && cp -r ./src/assets/. ./lib/assets"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"sass": "^1.83.4"
}
}