-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
173 lines (173 loc) · 4.16 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "mote-css",
"copyright": "Holger Schauf",
"description": "fast css development",
"repository": {
"type": "git",
"url": "[email protected]:fluse/mote.git"
},
"dir": {
"docroot": "../",
"sass": "sass",
"tmp": "moteTmp/",
"vendor": "css/vendor",
"themes": "css/themes/",
"concats": "css/concats/",
"export": {
"css": "css/dist/",
"font": "font/",
"images": "images/",
"sprite": "images/sprite/"
},
"deliver": "deliver/",
"deliverFont": "deliver/font/",
"deliverSprite": "deliver/sprite/",
"deliverImages": "deliver/images/"
},
"clear": [
"sass/tmp/",
".sass-cache",
"css/**/*.map"
],
"sass": {
"master": "@import '%pathToSass%/src/helpers/master';"
},
"tasks": {
"mote": {
"components": [
"copy:structure"
],
"description": "\t\t grunt mote: create structure"
},
"clear": {
"components": [
"clean"
],
"description": "\t\t grunt clear: delete following folders"
},
"help": {
"components": [],
"description": "\t\t grunt help: show possible tasks"
},
"compile": {
"components": [
"clean:css",
"sass",
"clean:compile",
"cssmin"
],
"description": "\t grunt compile: create theme files and compile with sass",
"arguments": {
"-name=default": "compile only given theme"
}
},
"createFont": {
"components": [
"copy:font"
],
"description": "\t grunt createFont: create font folder",
"arguments": {
"-name=default": "name of font"
}
},
"compileSprite": {
"components": [
"sprite:all",
"tinypng:sprite"
],
"description": "\t grunt compileSprite: create sprite from folder",
"arguments": {
"-name=default": "name of sprite folder"
}
},
"production": {
"components": [
"webfont",
"copy:cssAsScss",
"clean:css",
"sass",
"clean:compile",
"cssmin"
],
"description": "\t grunt production: create font, theme files and compile with sass",
"arguments": {
"-name=default": "font name"
}
},
"image": {
"components": [
"imagemin"
],
"description": "\t\t optimize image size"
},
"font": {
"components": [
"webfont",
"copy:cssAsScss"
],
"description": "\t\t grunt icon: create icon fonts",
"arguments": {
"-name=name": "compile font/{name}/*.svg into font/{name}/*.*"
}
},
"theme": {
"components": [
"copy:main"
],
"description": "\t\t create new theme from default",
"arguments": {
"-name=name": "create new sass/themes/{name}/*.*"
}
},
"watch": {
"components": [
"watch"
],
"description": "\t\t watch for modifications and rebuild"
}
},
"dependencies": {
"cli-color": "^0.3.2",
"extend": "^2.0.0",
"figures": "^1.3.5",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"node-dirutils": "^0.0.1",
"grunt-banner": "^0.2.3",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-csslint": "^0.2.0",
"grunt-contrib-cssmin": "^0.10.0",
"grunt-contrib-sass": "^0.8.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-webfont": "^0.4.8",
"inquirer": "^0.8.0",
"mkdirp": "^0.5.0",
"grunt-spritesmith": "^2.20.0",
"grunt-tinypng": "^0.5.3"
},
"scripts": {
"start": "node tasks.js"
},
"devDependencies": {
"cli-color": "0.3.2",
"extend": "^2.0.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-banner": "^0.2.3",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.6.0",
"grunt-contrib-csslint": "^0.2.0",
"grunt-contrib-cssmin": "^0.10.0",
"grunt-contrib-sass": "^0.8.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mkdir": "^0.1.2",
"grunt-spritesmith": "^2.20.0",
"grunt-tinypng": "^0.5.3",
"grunt-webfont": "^0.4.8",
"inquirer": "^0.8.0",
"load-grunt-config": "^0.16.0",
"load-grunt-tasks": "^0.6.0",
"mkdirp": "0.5.0",
"time-grunt": "^1.0.0"
}
}