21 lines
549 B
JSON
21 lines
549 B
JSON
{
|
|
"name": "org-theme",
|
|
"version": "0.0.1",
|
|
"description": "Simple Org Theme",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"scss": "node-sass --output-style compressed -o dist/ scss",
|
|
"serve": "browser-sync start --server --files 'dist/*.css, index.html'",
|
|
"watch:css": "onchange 'scss' -- npm run scss",
|
|
"start": "run-p serve watch:css"
|
|
},
|
|
"author": "Dehaeze Thomas",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"browser-sync": "^2.26.13",
|
|
"node-sass": "^5.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"onchange": "^7.1.0"
|
|
}
|
|
}
|