package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "co-mocha",
  3. "version": "1.2.2",
  4. "description": "Enable support for generators in Mocha tests",
  5. "main": "lib/co-mocha.js",
  6. "files": [
  7. "co-mocha.js",
  8. "lib/",
  9. "LICENSE"
  10. ],
  11. "scripts": {
  12. "lint": "standard",
  13. "build": "browserify lib/co-mocha.js -s co-mocha -o co-mocha.js",
  14. "test-spec": "mocha --harmony -R spec --require lib/co-mocha.js --bail",
  15. "test-cov": "testem ci -l Firefox,Node",
  16. "test": "mocha -V && npm run lint && npm run build && npm run test-cov"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git://notabug.org/themusicgod1/co-mocha.git"
  21. },
  22. "keywords": [
  23. "co",
  24. "mocha",
  25. "harmony",
  26. "generators"
  27. ],
  28. "author": {
  29. "name": "Blake Embrey",
  30. "email": "hello@blakeembrey.com",
  31. "url": "http://blakeembrey.me"
  32. },
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://notabug.org/themusicgod1/co-mocha/issues"
  36. },
  37. "homepage": "https://notabug.org/themusicgod1/co-mocha",
  38. "devDependencies": {
  39. "browserify": "^14.0.0",
  40. "chai": "^4.0.1",
  41. "es6-promise": "^4.0.5",
  42. "istanbul": "^1.1.0-alpha.1",
  43. "mocha": "*",
  44. "regenerator": "^0.10.0",
  45. "standard": "^10.0.0",
  46. "testem": "^1.13.0",
  47. "traceur": "0.0.111"
  48. },
  49. "standard": {
  50. "ignore": [
  51. "coverage/**",
  52. "node_modules/**",
  53. "bower_components/**",
  54. "co-mocha.js"
  55. ]
  56. },
  57. "dependencies": {
  58. "co": "^4.0.0",
  59. },
  60. "peerDependencies": {
  61. "mocha": ">=1.18 <6"
  62. }
  63. }