Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Development Tools

Ronald Valencia
PLUS
Ronald Valencia
Courses Plus Student 7,735 Points

bower

Hey guys, so i applied to a job posting on craigslist the guy said he was a web guru looking for an apprentice. Today I got a response from him and he asked me if I can make sense of this file. It looks like a bower package along with its dependancies for the dev environment. At least thats what the first part looks like to me. The second part tho I'm not sure at all. I have been searching for a bit and i cant seem to find this anywhere. Can someone let me know what I'm looking at?

{ "name": "base", "devDependencies": { "node-sass": "latest", "livereload": "latest", "jshint": "latest", "uglify": "latest", "imagemin-newer": "latest", "watch": "latest" },

"scripts": {

"preimg": "make clean...img",
"img": "npm run img:minify",
"img:minify": "imagemin-newer src/images dist/img",

"sass": "node-sass -rwq src/sass/style.scss style.css",

"prejs": "make clean...js",
"js": "npm run js:hint && npm run js:uglify",
"js:hint": "jshint src/js/*.js || true",
"js:uglify" : "find src/js -name '*.js' | uglifyjs -o dist/js/app.min.js",

"livereload": "livereload .",

"predev": "make clean && make scaffold",
"dev": "npm run sass & npm run js & npm run livereload -s ",
"postdev": "npm run watch:img & npm run watch:js",

"watch:img": "watch 'npm run img' src/images",
"watch:js": "watch 'npm run js' src/js"

} }