forked from groenroos/bulma-stylus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·84 lines (84 loc) · 2.33 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "bulma-stylus-plus",
"version": "0.9.1-beta",
"homepage": "https://github.com/M-O-Z-G/bulma-stylus-plus",
"author": {
"name": "Alexander \"M.O.Z.G\" Dikov",
"email": "alexandermozgdikov+github@gmail.com",
"url": "https://mozg-studio.org"
},
"contributors": [
"Oskari Groenroos <oskari@groenroos.fi> (http://groenroos.fi)",
"Jeremy Thomas <bbxdesign@gmail.com> (http://jgthms.com)"
],
"description": "Improved and expanded version of Bulma Stylus translation of Bulma, flexbox-based CSS framework.",
"main": "index.js",
"stylus": "bulma-stylus-plus.styl",
"unpkg": "css/bulma.css",
"style": "bulma/css/bulma.min.css",
"repository": {
"type": "git",
"url": "git+https://github.com/M-O-Z-G/bulma-stylus-plus.git"
},
"license": "MIT",
"keywords": [
"css",
"stylus",
"flexbox",
"responsive",
"framework",
"bulma",
"components",
"css3",
"prototyping"
],
"bugs": {
"url": "https://github.com/M-O-Z-G/bulma-stylus-plus/issues"
},
"devDependencies": {
"autoprefixer-stylus": "^1.0.0",
"clean-css-cli": "4.3.0",
"rimraf": "3.0.2",
"stylus": "^0.54.7"
},
"optionalDependencies": {
"stylint": "^2.0.0",
"synp": "^1.7.0"
},
"scripts": {
"build": "npm run build-stylus && npm run build-cleancss",
"build-stylus": "stylus bulma-stylus-plus.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-stylus-plus-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-stylus-plus.styl --out css/bulma.css --sourcemap --use autoprefixer-stylus"
},
"files": [
"css",
"stylus",
"index.js",
"bulma-stylus-plus.styl",
"bulma-stylus-plus-rtl.styl",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"README.md"
],
"engines": {
"node": ">=8.17.0"
},
"engineStrict": true,
"browserslist": [
"last 1 version",
"> 1%",
"IE 9",
"firefox 28",
"chrome 30",
"safari 7",
"opera 20",
"ios_saf 7"
]
}