This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
forked from jenil/chota
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 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
{
"name": "burn.css",
"version": "0.7.4",
"description": "A really small CSS framework",
"main": "dist/burn.min.css",
"scripts": {
"start": "run-p browser-sync watch",
"browser-sync": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
"build": "rimraf dist/* && yarn postcss && cross-env NODE_ENV=production yarn postcss --ext .min.css && gzip -c dist/burn.min.css | wc -c",
"postcss": "postcss ./src/burn.css -d dist/",
"watch": "cross-env NODE_ENV=development yarn postcss -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"css",
"minimal",
"web"
],
"author": "Noskov Artem",
"license": "MIT",
"homepage": "https://github.com/gascore/burn.css",
"repository": {
"type": "git",
"url": "git+https://github.com/gascore/burn.css.git"
},
"bugs": {
"url": "https://github.com/gascore/burn.css/issues"
},
"devDependencies": {
"autoprefixer": "^9.5.0",
"browser-sync": "^2.26.3",
"cross-env": "^5.2.0",
"cssnano": "^4.1.7",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.0.1",
"postcss-csso": "^3.0.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.2",
"postcss-nesting": "^7.0.1",
"postcss-simple-vars": "^5.0.2",
"rimraf": "^2.6.3"
},
"files": [
"src/",
"dist/",
"README.md"
]
}