22 lines
558 B
JSON
22 lines
558 B
JSON
{
|
|
"name": "andy",
|
|
"version": "1.0.0",
|
|
"description": "scss_starter",
|
|
"main": "index",
|
|
"scripts": {
|
|
"scss": "node-sass scss/style.scss css/style.css --output-style expanded",
|
|
"cssmin": "node-sass css/style.css css/style.min.css --output-style compressed",
|
|
"build:css": "npm run scss && npm run cssmin",
|
|
"watch:css": "onchange \"scss/*.scss\" \"scss/inc/*.scss\" -- npm run build:css"
|
|
},
|
|
"author": "tuc2",
|
|
"license": "WTFPL",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "local"
|
|
},
|
|
"keywords": [
|
|
"scss_starter"
|
|
]
|
|
}
|