forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "@shirohana/bulma-stylus",
"version": "0.7.1",
"homepage": "https://bulma.io",
"author": "Hana Shiro <[email protected]>",
"description": "Pure Stylus implementation of Bulma.css with a little changes",
"main": "bulma.styl",
"repository": "[email protected]:shirohana/bulma.stylus.git",
"license": "MIT",
"keywords": [
"css",
"stylus",
"flexbox",
"responsive",
"framework"
],
"files": [
"stylus",
"bulma.styl",
"LICENSE",
"README.md"
],
"scripts": {
"build": "mkdir -p docs/css && npm run build-stylus",
"build-stylus": "stylus bulma.styl --sourcemap -o docs/css/bulma.css",
"clean": "rm -rf docs/css",
"deploy": "npm run clean && npm run docs && npm run build",
"docs": "npm run docs-sass && npm run docs-autoprefix",
"docs-autoprefix": "postcss --use autoprefixer --map false --output docs/css/bulma-docs.css docs/css/bulma-docs.css",
"docs-sass": "node-sass --output-style expanded docs/bulma-docs.sass docs/css/bulma-docs.css",
"dev": "npm run docs && npm run build-stylus -- --watch"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"node-sass": "^4.5.3",
"postcss-cli": "^4.1.0",
"stylus": "^0.54.5"
}
}