31 lines
938 B
JSON
31 lines
938 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",
|
|
"js": "browserify js/script.js -o dist/script.js",
|
|
"serve": "browser-sync start --server --files 'dist/*.css, dist/*.js, index.html'",
|
|
"watch:js": "watchify -t babelify js/script.js -o dist/script.js",
|
|
"watch:css": "onchange 'scss' -- npm run scss",
|
|
"build": "npm run scss && npm run js",
|
|
"start": "run-p serve watch:css watch:js"
|
|
},
|
|
"author": "Dehaeze Thomas",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.12.8",
|
|
"@babel/core": "^7.12.9",
|
|
"@babel/preset-env": "^7.12.7",
|
|
"babelify": "^10.0.0",
|
|
"browser-sync": "^2.26.13",
|
|
"browserify": "^17.0.0",
|
|
"node-sass": "^5.0.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"onchange": "^7.1.0",
|
|
"watchify": "^3.11.1"
|
|
},
|
|
"dependencies": {}
|
|
}
|