-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "fxgrid",
"version": "1.0.0",
"description": "Simple CSS grid framework based on flexbox",
"main": "fxgrid.scss",
"style": "css/fxgrid.css",
"unpkg": "css/fxgrid.min.css",
"author": {
"name": "Sri Aspari",
"email": "[email protected]",
"url": "https://siarie.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siarie/fxgrid.git"
},
"keywords": [
"flexbox",
"scss",
"grid"
],
"bugs": {
"url": "https://github.com/siarie/fxgrid/issues"
},
"license": "MIT",
"scripts": {
"build": "yarn build:scss && yarn build:autoprefix && yarn build:cssnano",
"build:scss": "sass --source-map fxgrid.scss css/fxgrid.css",
"build:autoprefix": "postcss --use autoprefixer -o css/fxgrid.css css/fxgrid.css",
"build:cssnano": "postcss --use cssnano -o css/fxgrid.min.css css/fxgrid.css",
"clean": "rimraf css",
"watch": "yarn build:scss --watch"
},
"devDependencies": {
"autoprefixer": "^10.3.2",
"cssnano": "^5.0.8",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"rimraf": "^3.0.2",
"sass": "^1.38.1"
},
"browserslist": [
"last 4 versions"
],
"files": [
"css",
"fxgrid.scss",
"LICENSE",
"README.md"
]
}