package.json 605 B

12345678910111213141516171819202122
  1. {
  2. "name": "karma-coverage-coffee-example",
  3. "version": "1.0.0",
  4. "description": "Demonstrate the usage of karma-coverage with CoffeeScript",
  5. "main": "",
  6. "scripts": {
  7. "test": "./node_modules/karma/bin/karma start"
  8. },
  9. "author": "Lloyd Smith II <lloyd.smith@gmail.com>",
  10. "license": "MIT",
  11. "dependencies": {},
  12. "devDependencies": {
  13. "coffee-script": "latest",
  14. "ibrik": "^2.0.0",
  15. "karma": "^0.13.9",
  16. "karma-coffee-preprocessor": "latest",
  17. "karma-firefox-launcher": "latest",
  18. "karma-mocha": "latest",
  19. "karma-requirejs": "^0.2.2",
  20. "requirejs": "^2.1.20"
  21. }
  22. }