forked from ConciseCSS/concise.css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 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
{
"name": "concise.css",
"version": "3.4.0",
"description": "A lightweight front-end framework that provides functionality without the bloat.",
"license": "MIT",
"keywords": [
"css",
"sass",
"scss",
"mobile-first",
"responsive",
"front-end",
"framework",
"web",
"lightweight"
],
"homepage": "http://concisecss.com",
"bugs": "https://github.com/ConciseCSS/concise.css/issues",
"repository": {
"type": "git",
"url": "https://github.com/ConciseCSS/concise.css"
},
"engines": {
"node": "<=4.2.3"
},
"devDependencies": {
"chokidar-cli": "^1.2.0",
"concise-cli": "^0.3.0",
"cssnano-cli": "^1.0.4",
"node-sass": "^3.7.0",
"stylestats": "^6.3.0"
},
"scripts": {
"build": "concisecss compile concise.scss dist/concise.css && cssnano dist/concise.css dist/concise.min.css",
"build:watch": "npm run build && chokidar '**/*.scss' -c 'npm run build'",
"stats": "stylestats dist/concise.css",
"stats:min": "stylestats dist/concise.min.css"
}
}