Guest User

Untitled

a guest
Dec 9th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. ├── .bowerrc
  2. ├── .grunt/
  3. ├── .tmp
  4. │   ├── _SpecRunner.html
  5. │   ├── bower_components -> ../client/bower_components
  6. │   ├── index.html
  7. │   ├── script
  8. │   │   ├── main.js
  9. │   │   ├── templates.js
  10. │   │   └── ...
  11. │   └── style
  12. │   └── main.css
  13. ├── Gruntfile.coffee
  14. ├── bower.json
  15. ├── client
  16. │   ├── bower_components/
  17. │   ├── index.html
  18. │   ├── script
  19. │   │   ├── main.coffee
  20. │   │   └── ...
  21. │   ├── style
  22. │   │ └── main.sass
  23. │   └── template/
  24. ├── node_modules/
  25. └── package.json
  26.  
  27. connect:
  28. server:
  29. options:
  30. hostname: 'localhost'
  31. base: '.tmp'
  32.  
  33. jasmine:
  34. test:
  35. options:
  36. specs: '.tmp/script/**/*_test.js'
  37. host: 'http://localhost:8000/'
  38. outfile: '.tmp/_SpecRunner.html'
Add Comment
Please, Sign In to add comment