-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.78 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"author": "Muhammad Ubaid Raza <[email protected]>",
"browser": "css/bulma.min.css",
"bugs": {
"url": "https://github.com/mubaidr/bulma-fluent/issues"
},
"dependencies": {
"bulma": "^0.9.0"
},
"description": "Fluent Design Theme based on Bulma CSS framework, inspired by Microsoft’s Fluent Design System",
"devDependencies": {
"autoprefixer": "^9.8.6",
"clean-css-cli": "^4.3.0",
"postcss-cli": "^7.1.1",
"rimraf": "^3.0.2",
"sass": "^1.26.10"
},
"files": [
"css",
"src/sass",
"bulma.sass",
"customize-colors.sass",
"LICENSE",
"README.md"
],
"homepage": "https://mubaidr.github.io/bulma-fluent",
"keywords": [
"css3",
"bulma",
"theme",
"fluent"
],
"license": "MIT",
"main": "bulma.sass",
"name": "bulma-fluent",
"repository": {
"type": "git",
"url": "git+https://github.com/mubaidr/bulma-fluent.git"
},
"scripts": {
"build": "npm run build-docs && npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-minify",
"build-autoprefix": "postcss --use autoprefixer --map true --output css/bulma.css css/bulma.css",
"build-clean": "rimraf css",
"build-docs": "cd src/docs && npm run build && cd..",
"build-minify": "cleancss --level 2 -o css/bulma.min.css css/bulma.css",
"build-sass": "sass --load-path node_modules --indented --style expanded bulma.sass css/bulma.css",
"customize-colors": "sass --load-path node_modules --indented --style expanded customize-colors.sass customize-colors/bulma.css",
"dev": "cd src/docs && npm run dev && cd../..",
"lint": "cd src/docs/ && npm run lint && cd ../..",
"test": "sh test/sass-compile-tester.sh"
},
"style": "css/bulma.min.css",
"unpkg": "css/bulma.min.css",
"version": "0.4.3"
}