forked from BlazeSoftware/atoms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "blaze",
"version": "2.1.1",
"description": "Open Source CSS Framework",
"main": "dist/blaze.min.css",
"files": [
"dist",
"scss"
],
"scripts": {
"prescss": "rm -rf dist && mkdir dist",
"scss": "node-sass -q --output-style compressed scss --output dist",
"autoprefixer": "postcss --use autoprefixer --autoprefixer.browsers \"last 2 versions\" -r dist/*.css",
"build": "npm run scss && npm run autoprefixer",
"postbuild": "mv -f dist/blaze.css dist/blaze.min.css && mv -f dist/blaze.animations.css dist/blaze.animations.min.css"
},
"repository": {
"type": "git",
"url": "https://github.com/BlazeCSS/blaze.git"
},
"keywords": [
"html5",
"sass",
"scss",
"css",
"bem",
"itcss",
"bemit",
"ui",
"ux",
"framework",
"components"
],
"author": "Gregory Pratt",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlazeCSS/blaze/issues"
},
"homepage": "http://blazecss.com",
"devDependencies": {
"autoprefixer": "~6.1.0",
"clean-css": "^3.4.8",
"node-sass": "~3.4.1",
"postcss-cli": "~2.3.2"
}
}