package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@cypress/xvfb",
  3. "version": "1.2.4",
  4. "private": false,
  5. "author": "Rob Wu <rob@robwu.nl> (https://robwu.nl)",
  6. "contributors": [
  7. "ProxV, Inc. <support@proxv.com> (http://proxv.com)"
  8. ],
  9. "description": "Easily start and stop an X Virtual Frame Buffer from your node apps.",
  10. "publishConfig": {
  11. "registry": "http://registry.npmjs.org/",
  12. "access": "public"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/cypress-io/xvfb.git"
  17. },
  18. "dependencies": {
  19. "debug": "^3.1.0",
  20. "lodash.once": "^4.1.1"
  21. },
  22. "main": "index.js",
  23. "files": [
  24. "index.js"
  25. ],
  26. "license": "MIT",
  27. "scripts": {
  28. "test": "eslint **/*.js && mocha",
  29. "test-watch": "mocha watch",
  30. "semantic-release": "semantic-release",
  31. "commit": "commit-wizard",
  32. "demo": "node ./demo",
  33. "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
  34. },
  35. "devDependencies": {
  36. "bluebird": "^3.5.1",
  37. "chai": "^4.1.2",
  38. "eslint": "^4.13.1",
  39. "eslint-plugin-cypress-dev": "^1.1.2",
  40. "eslint-plugin-mocha": "^4.11.0",
  41. "husky": "1.0.1",
  42. "mocha": "^3.5.0",
  43. "npm-utils": "^2.0.0",
  44. "semantic-release": "15.9.16"
  45. },
  46. "release": {
  47. "analyzeCommits": {
  48. "preset": "angular",
  49. "releaseRules": [
  50. {
  51. "type": "break",
  52. "release": "major"
  53. }
  54. ]
  55. }
  56. },
  57. "husky": {
  58. "hooks": {
  59. "pre-commit": "npm test",
  60. "pre-push": "npm run size"
  61. }
  62. }
  63. }