1
0
mirror of https://github.com/cjcenizal/flexbox-patterns.git synced 2025-01-16 20:08:17 +01:00
flexbox-patterns/package.json
2017-01-05 18:27:55 -08:00

26 lines
889 B
JSON

{
"name": "flexbox-patterns",
"version": "0.3.0",
"description": "Patterns for using flexbox CSS to build awesome UI components",
"repository": "cjcenizal/flexbox-patterns",
"author": {
"name": "CJ Cenizal",
"email": "cj@cenizal.com",
"url": "http://www.cenizal.com/"
},
"devDependencies": {
"autoprefixer": "6.2.3",
"css-concat": "0.0.4",
"cpx": "1.3.1",
"jade": "1.11.0",
"postcss-cli": "2.3.3"
},
"scripts": {
"build": "npm run copyImages && npm run compileCss && npm run autoPrefixCss && npm run compileHtml",
"copyImages": "cpx \"src/images/**/*\" dist/images",
"compileCss": "css-concat src/index.css dist/styles.css",
"autoPrefixCss": "postcss --local-plugins --use autoprefixer --autoprefixer.browsers 'last 2 versions' -o dist/styles.css dist/styles.css",
"compileHtml": "jade src/index.jade -P -o dist"
}
}