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.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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.0.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.1"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"cssmin": "^0.4.3",
"node-sass": "^3.3.3",
"postcss-cli": "^2.2.0",
"stylestats": "^6.0.0",
"watch": "^0.16.0"
},
"scripts": {
"build": "node-sass src/concise.scss dist/concise.css | postcss --use autoprefixer < dist/concise.css -b \"last 2 versions\" | cssmin > dist/concise.min.css",
"build:watch": "watch \"npm run build\" src",
"stats": "stylestats dist/concise.css"
}
}