package.json 450 B

123456789101112131415161718
  1. {
  2. "devDependencies": {
  3. "grunt": "^0.4.5",
  4. "grunt-contrib-concat": "~0.5.0",
  5. "grunt-contrib-jshint": "~0.10.0",
  6. "grunt-contrib-less": "~0.11.0",
  7. "grunt-contrib-uglify": "~0.6.0",
  8. "grunt-contrib-watch": "~0.6.1"
  9. },
  10. "scripts": {
  11. "build": "npm install && grunt",
  12. "start": "grunt watch",
  13. "test": "grunt"
  14. },
  15. "dependencies": {
  16. "grunt-cli": "^1.3.2"
  17. }
  18. }