| 12345678910111213141516 | {    "devDependencies": {        "grunt": "~0.4.5",        "grunt-contrib-uglify": "~0.6.0",        "grunt-contrib-watch" : "~0.6.1",        "grunt-contrib-concat" : "~0.5.0",        "grunt-contrib-jshint" : "~0.10.0",        "grunt-contrib-less" : "~0.11.0"    },        "scripts": {        "build": "npm install && grunt",        "start": "grunt watch",        "test": "grunt"    }}
 |