forked from jenil/chota
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "chota-scss",
"version": "0.5.0",
"description": "SCSS port for a really small CSS framework",
"main": "scss/chota.scss",
"scripts": {
"start": "browser-sync start --server --directory --files '**/*.css' '**/*.html'",
"buildsass": "sass scss/chota.scss:dist/chota.css",
"build": "rm -r dist/ && yarn postcss && NODE_ENV=production yarn postcss -x .min.css",
"postcss": "postcss ./src/chota.css -d dist/",
"watch": "NODE_ENV=development yarn postcss -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"css",
"scss",
"sass",
"minimal",
"web"
],
"author": "Jenil Gogari",
"contributors": [
"Berkan Dirim <[email protected]> (http://dirim.co/)"
],
"license": "MIT",
"homepage": "https://jenil.github.io/chota",
"repository": {
"type": "git",
"url": "git+https://github.com/berkandirim/chota-scss.git"
},
"bugs": {
"url": "https://github.com/berkandirim/chota-scss/issues"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"browser-sync": "^2.18.8",
"postcss-cli": "^4.1.1",
"postcss-csso": "^3.0.0",
"postcss-import": "^9.1.0"
},
"files": [
"scss/",
"src/",
"dist/",
"README.md"
]
}