-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·52 lines (52 loc) · 1.64 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
{
"name": "bulma-stylus",
"version": "0.9.2-rc.1",
"homepage": "http://github.com/groenroos/bulma-stylus",
"author": "Oskari Groenroos <oskari@groenroos.fi> (http://groenroos.fi)",
"contributors": [
"Jeremy Thomas <bbxdesign@gmail.com> (http://jgthms.com)"
],
"description": "Modern CSS framework based on Flexbox",
"main": "bulma.styl",
"unpkg": "css/bulma.css",
"style": "bulma/css/bulma.min.css",
"repository": {
"type": "git",
"url": "git+https://github.com/groenroos/bulma-stylus.git"
},
"license": "MIT",
"keywords": [
"css",
"stylus",
"flexbox",
"responsive",
"framework"
],
"bugs": {
"url": "https://github.com/groenroos/bulma-stylus/issues"
},
"devDependencies": {
"autoprefixer-stylus": "^1.0.0",
"clean-css-cli": "4.3.0",
"rimraf": "3.0.2",
"stylus": "^0.54.7"
},
"scripts": {
"build": "npm run build-stylus && npm run build-cleancss",
"build-stylus": "stylus bulma.styl --out css/bulma.css --sourcemap --use autoprefixer-stylus",
"build-cleancss": "cleancss -o css/bulma.min.css css/bulma.css",
"clean": "rimraf css",
"rtl": "npm run rtl-stylus && npm run rtl-cleancss",
"rtl-stylus": "stylus bulma-rtl.styl --out css/bulma-rtl.css --sourcemap --use autoprefixer-stylus",
"rtl-cleancss": "cleancss -o css/bulma-rtl.min.css css/bulma-rtl.css",
"deploy": "npm run clean && npm run build && npm run rtl",
"start": "stylus -w bulma.styl --out css/bulma.css --sourcemap --use autoprefixer-stylus"
},
"files": [
"css",
"stylus",
"bulma.styl",
"LICENSE",
"README.md"
]
}