-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
57
58
{
"name": "lime-grid.css",
"version": "0.1.0",
"description": "Powerful Flexbox based Grid System for modern browsers.",
"main": "lime-grid.css",
"style": "lime-grid.css",
"files": [
"lime-grid.css",
"lime-grid.min.css",
"src"
],
"scripts": {
"start": "npm run css:dev -- -w",
"build": "npm run css:dev & npm run css:prod",
"css:common": "postcss src/index.css",
"css:dev": "npm run css:common -- -e development -o lime-grid.css",
"css:prod": "npm run css:common -- -e production -o lime-grid.min.css",
"test": "stylelint \"src/**/*.css\"",
"docs": "npm run docs:css",
"docs:watch": "npm run docs:server & npm run docs:css:watch",
"docs:server": "browser-sync start -s docs -f \"docs/**/*\" --no-notify --no-open --no-ghost-mode",
"docs:css": "postcss docs/css/style.css -o docs/style.css -c docs/postcss.config.js",
"docs:css:watch": "npm run docs:css -- -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsuyoshiwada/lime-grid.css.git"
},
"keywords": [
"flexbox",
"grid",
"grid-system",
"css",
"browser",
"lime-grid"
],
"author": "tsuyoshiwada",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsuyoshiwada/lime-grid.css/issues"
},
"homepage": "https://github.com/tsuyoshiwada/lime-grid.css#readme",
"devDependencies": {
"autoprefixer": "^7.1.1",
"browser-sync": "^2.18.12",
"cpx": "^1.5.0",
"cssnano": "^3.10.0",
"postcss-calc": "^6.0.0",
"postcss-cli": "^4.0.0",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^6.0.1",
"postcss-flexbugs-fixes": "^3.0.0",
"postcss-import": "^10.0.0",
"postcss-nesting": "^4.0.1",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0"
}
}