-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.65 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
{
"author": {
"name": "Bogdan Plieshka",
"homepage": "http://godban.github.io"
},
"bugs": {
"url": "https://github.com/godban/flex-box-grid/issues"
},
"name": "flex-box-grid",
"description": "Responsive, mobile first Flexbox Grid",
"devDependencies": {
"autoprefixer": "9.4.2",
"node-sass": "4.9.0",
"postcss-cli": "4.1.1",
"stylelint": "10.0.1",
"stylelint-config-recommended": "1.0.0"
},
"homepage": "http://godban.github.io/flex-box-grid",
"keywords": [
"Grid",
"Flex",
"Flexbox",
"Flex grid",
"Mobile First",
"Responsive"
],
"license": "MIT",
"main": "dist/css/index.css",
"repository": {
"type": "git",
"url": "git://github.com/godban/flex-box-grid.git"
},
"scripts": {
"build": "npm run dist && npm run docs",
"dist": "npm run dist:clean && npm run dist:copy && npm run dist:scss && npm run dist:postcss && npm run dist:zip",
"dist:clean": "rm -rf dist",
"dist:copy": "mkdir dist && cp -a src/scss dist/scss",
"dist:scss": "node-sass src/scss/index.scss dist/css/index.css --output-style=expanded",
"dist:postcss": "postcss -u autoprefixer -c postcss.config.js -o dist/css/*.css dist/css/index.css",
"dist:zip": "zip -r dist/flexboxgrid.zip dist/scss",
"docs": "npm run docs:clean && npm run docs:copy && npm run docs:scss",
"docs:clean": "rm -rf docs/styles/flex-box-grid docs/dist",
"docs:copy": "cp -a dist/scss docs/styles/flex-box-grid && cp -a dist docs/dist",
"docs:scss": "node-sass docs/styles/index.scss docs/styles/index.css --output-style=compressed",
"test": "stylelint '**/*.scss' --syntax scss"
},
"version": "1.0.0"
}