-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
31
32
33
34
35
36
37
{
"name": "@uarizona-fnsv/bootstrap",
"version": "2.3.1",
"description": "A Bootstrap theme utilizing University of Arizona branding",
"scripts": {
"build": "npm run css:all",
"css:all": "npm run css:compile && npm run css:prefix && npm run css:minify",
"css:minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/bootstrap.min.css dist/bootstrap.css",
"css:prefix": "postcss --config postcss.config.js --replace \"dist/*.css\" \"!dist/*.min.css\"",
"css:compile": "sass --style=expanded --source-map --embed-sources scss/fso-bootstrap.scss dist/bootstrap.css"
},
"repository": {
"type": "git",
"url": "https://github.com/uarizona-fnsv/bootstrap.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"dist/**.css",
"dist/**.css.map",
"fonts/",
"scss/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.2.4",
"bootstrap": "^4.6.0",
"clean-css-cli": "^4.1.10",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"sass": "^1.35.1"
}
}