inside of package.json and bower.json - rosalsm/TIY-GitHub GitHub Wiki

package.json has to be in the same level than index.html?? no, just follow the path

  "main": "index.js",
  "scripts": {
    "test": "mocha",
    "start": "browser-sync start --server --directory --startPath='src/index.html'",
    "sass": "node-sass src/scss/main.scss src/css/main.css"
 
  "dependencies": {
    "bower": "^1.6.3",
    "browser-sync": "^2.9.11",
    "chai": "^3.3.0",
    "mocha": "^2.3.3",
    "node-sass": "^3.3.3",
    "wiredep": "^2.2.2"
  "main": "src/index.html",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "browser-sync start --server --directory --files='src/*.html, src/main.css'",
    "sass": "node-sass src/scss/main.scss src/css/main.css",
    "install:bower": "bower install --save",
    "postinstall:bower": "wiredep --src 'src/*.html'",
    "postinstall": "bower install"
  • "start": "browser-sync start --server --files='*.html,css/*.css,js/*.js'"
  • "sass":"node-sass src/scss/main.scss src/css/main.css --watch scss/"

bower.json

"name": "TIY-Github",
  "homepage": "https://github.com/rosalsm/TIY-GitHub",
  ],
  "description": "",
  "main": "src/index.html",
  
  ],
  "dependencies": {
    "jquery": "~2.1.4",
    "lodash": "~3.10.1",
    "modernizr": "~3.1.0",
    "normalize-css": "normalize.css#~3.0.3",
    "angular": "~1.4.7"