-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 817 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 817 Bytes
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
{
"name": "simple-grid",
"version": "1.0.0",
"description": "CSS grid framework using flexbox",
"main": "index.js",
"scripts": {
"build": "mkdir -p dist && postcss --use postcss-apply --use postcss-for --use autoprefixer --use cssnano --output dist/grid.css src/grid.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alrighty/simple-grid.git"
},
"keywords": [
"flexbox",
"grid",
"css"
],
"author": "Andrew M. and Co",
"license": "ISC",
"bugs": {
"url": "https://github.com/alrighty/simple-grid/issues"
},
"homepage": "https://github.com/alrighty/simple-grid#readme",
"devDependencies": {
"autoprefixer": "^6.3.3",
"cssnano": "^3.5.2",
"postcss-apply": "^0.2.0",
"postcss-cli": "^2.5.1",
"postcss-for": "^2.0.1"
}
}