├── css ├── cd ├── main.css └── reset.css ├── js └── main.js ├── .gitignore ├── index.html └── package.json /css/cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/reset.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello 5 | 6 | 7 | Hello, world!!! 8 | 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sidthesloth92.github.io", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "scss": "node-sass scss/main.scss css/main.css", 9 | "postcss": "postcss --use autoprefixer -o css/main.css css/main.css", 10 | "build:css": "npm run scss && npm run postcss", 11 | "watch:css": "onchange 'scss/**/*.scss' -- npm run build:css", 12 | "start": "parallelshell 'npm run watch:css' 'live-server'" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/sidthesloth92/sidthesloth92.github.io.git" 17 | }, 18 | "author": "Dinesh Balaji (https://dbwriteups.wordpress.com/)", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/sidthesloth92/sidthesloth92.github.io/issues" 22 | }, 23 | "homepage": "https://github.com/sidthesloth92/sidthesloth92.github.io#readme", 24 | "devDependencies": { 25 | "autoprefixer": "6.3.7", 26 | "live-server": "1.0.0", 27 | "node-sass": "3.8.0", 28 | "onchange": "2.5.0", 29 | "parallelshell": "2.0.0", 30 | "postcss": "5.1.0", 31 | "postcss-cli": "2.5.2" 32 | } 33 | } 34 | --------------------------------------------------------------------------------