-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "reflex-grid",
"version": "2.0.8",
"description": "responsive flexbox grid with inline-block legacy support",
"main": "css/reflex.css",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "https://github.com/leejordan/reflex.git"
},
"keywords": [
"reflex",
"flexbox",
"responsive",
"inline-block",
"fallback",
"grid",
"SCSS"
],
"author": "@leejordan",
"license": "MIT",
"bugs": {
"url": "https://github.com/leejordan/reflex/issues"
},
"homepage": "reflexgrid.com",
"scripts": {
"build": "npm run build:min && npm run build:max",
"build:min": "sass --style compressed scss/reflex.scss css/reflex.min.css",
"build:max": "sass --style expanded scss/reflex.scss css/reflex.css",
"watch": "sass --watch --style expanded scss/reflex.scss css/reflex.css",
"build:docs": "sass --style expanded docs/scss/docs.scss docs/css/docs.css",
"watch:docs": "sass --watch --style expanded docs/scss/docs.scss docs/css/docs.css",
"start": "./node_modules/.bin/http-server ./docs -a localhost -c10"
},
"devDependencies": {
"http-server": "^0.12.3",
"sass": "^1.66.1"
}
}