package.json 689 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "xvfb-maybe",
  3. "version": "0.2.1",
  4. "description": "Runs xvfb-run only if you need to, useful for Electron unit tests",
  5. "bin": {
  6. "xvfb-maybe": "./src/xvfb-maybe.js"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/paulcbetts/xvfb-maybe"
  11. },
  12. "keywords": [
  13. "xvfb",
  14. "electron"
  15. ],
  16. "author": "Paul Betts <paul@paulbetts.org>",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/paulcbetts/xvfb-maybe/issues"
  20. },
  21. "homepage": "https://github.com/paulcbetts/xvfb-maybe",
  22. "dependencies": {
  23. "debug": "^2.2.0",
  24. "which": "^1.2.4"
  25. },
  26. "devDependencies": {
  27. "babel-eslint": "^5.0.0",
  28. "eslint": "^2.1.0"
  29. }
  30. }