-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
56 lines (56 loc) · 1.71 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
52
53
54
55
56
{
"name": "frow",
"version": "4.0.0",
"description": "Flexbox Toolkit & Grid",
"main": "frow.sass",
"scripts": {
"sass": "sass frow.sass dist/frow.css",
"autoprefixer": "postcss --no-map -u autoprefixer -r dist/frow.css",
"cssnano": "postcss --no-map -u cssnano -o dist/frow.min.css dist/frow.css",
"csscopy": "FROW=`echo \"/* This code is not minified for example purposes only, remember to minify your code! */\" | cat - dist/frow.css` && echo \"$FROW\" > docs/styles/frow.css",
"letsgocopy": "cp -t docs/scripts node_modules/letsgo/letsgo.js",
"build:css": "run-s sass autoprefixer cssnano csscopy",
"build:js": "run-s letsgocopy",
"build": "run-s build:*",
"watch:src": "onchange \"frow.sass\" \"_variables.sass\" \"src\" -- run-s build:css",
"watch": "run-p watch:*",
"server": "browser-sync start --f \"docs/**/*\" --server \"docs\" --port 8080 --ui-port 8081",
"running": "run-p watch server",
"start": "run-s build running"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beg-in/frow.git"
},
"keywords": [
"css",
"css grid",
"responsive css",
"responsive",
"flex",
"css flex",
"flexbox",
"sass",
"mobile-first",
"front-end",
"front end",
"framework",
"web"
],
"author": "Cody Sherman <cody@beg.in> (https://codysherman.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beg-in/frow/issues"
},
"homepage": "https://frowcss.com",
"devDependencies": {
"autoprefixer": "^9.8.6",
"browser-sync": "^2.27.5",
"cssnano": "^4.1.11",
"letsgo": "^0.2.3",
"npm-run-all": "^4.1.5",
"onchange": "^6.1.1",
"postcss-cli": "^6.1.3",
"sass": "^1.38.2"
}
}