-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 2.23 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "fastbootstrap",
"version": "2.2.0",
"description": "Free Bootstrap components & plugins with Atlassian Design for your next project quickly get start.",
"homepage": "https://fastbootstrap.com/",
"author": "FastBootstrap",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fastbootstrap/atlassian-design-for-bootstrap.git"
},
"keywords": [
"css",
"sass",
"mobile-first",
"responsive",
"front-end",
"framework",
"web",
"bootstrap",
"atlassian-design"
],
"main": "dist/js/fastbootstrap.js",
"sass": "src/scss/fastbootstrap.scss",
"style": "dist/css/fastbootstrap.css",
"scripts": {
"css": "npm-run-all css-compile css-prefix css-rtl css-minify",
"css-compile": "sass --load-path=node_modules --style expanded --source-map --embed-sources --no-error-css src/scss/:dist/css/",
"css-rtl": "cross-env NODE_ENV=RTL postcss --config build/postcss.config.js --dir \"dist/css\" --ext \".rtl.css\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*.rtl.css\"",
"css-minify": "npm-run-all --aggregate-output --parallel css-minify-*",
"css-minify-main": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\" \"!dist/css/*rtl*.css\"",
"css-minify-rtl": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output dist/css/ --batch --batch-suffix \".min\" \"dist/css/*rtl.css\" \"!dist/css/*.min.css\"",
"css-prefix": "npm-run-all --aggregate-output --parallel css-prefix-*",
"css-prefix-main": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.rtl*.css\" \"!dist/css/*.min.css\"",
"dist": "npm-run-all --aggregate-output --parallel css"
},
"dependencies": {
"bootstrap": "^5.3.2"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"clean-css-cli": "^5.6.1",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"prettier": "^2.7.0",
"rtlcss": "^4.0.0",
"sass": "^1.52.3"
},
"files": [
"dist/{css}/*.{css,map}",
"src/{scss}/**/*.{scss}"
]
}