package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "cypress",
  3. "version": "3.8.0",
  4. "main": "index.js",
  5. "scripts": {
  6. "postinstall": "node index.js --exec install",
  7. "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
  8. },
  9. "dependencies": {
  10. "@cypress/listr-verbose-renderer": "0.4.1",
  11. "@cypress/xvfb": "1.2.4",
  12. "@types/sizzle": "2.3.2",
  13. "arch": "2.1.1",
  14. "bluebird": "3.5.0",
  15. "cachedir": "1.3.0",
  16. "chalk": "2.4.2",
  17. "check-more-types": "2.24.0",
  18. "commander": "2.15.1",
  19. "common-tags": "1.8.0",
  20. "debug": "3.2.6",
  21. "execa": "0.10.0",
  22. "executable": "4.1.1",
  23. "extract-zip": "1.6.7",
  24. "fs-extra": "5.0.0",
  25. "getos": "3.1.1",
  26. "is-ci": "1.2.1",
  27. "is-installed-globally": "0.1.0",
  28. "lazy-ass": "1.6.0",
  29. "listr": "0.12.0",
  30. "lodash": "4.17.15",
  31. "log-symbols": "2.2.0",
  32. "minimist": "1.2.0",
  33. "moment": "2.24.0",
  34. "ramda": "0.24.1",
  35. "request": "2.88.0",
  36. "request-progress": "3.0.0",
  37. "supports-color": "5.5.0",
  38. "tmp": "0.1.0",
  39. "untildify": "3.0.3",
  40. "url": "0.11.0",
  41. "yauzl": "2.10.0"
  42. },
  43. "files": [
  44. "bin",
  45. "lib",
  46. "index.js",
  47. "types/**/*.d.ts"
  48. ],
  49. "bin": {
  50. "cypress": "bin/cypress"
  51. },
  52. "engines": {
  53. "node": ">=4.0.0"
  54. },
  55. "types": "types",
  56. "description": "Cypress.io end to end testing tool",
  57. "author": "Brian Mann",
  58. "homepage": "https://github.com/cypress-io/cypress",
  59. "license": "MIT",
  60. "bugs": {
  61. "url": "https://github.com/cypress-io/cypress/issues"
  62. },
  63. "repository": {
  64. "type": "git",
  65. "url": "https://github.com/cypress-io/cypress.git"
  66. },
  67. "keywords": [
  68. "automation",
  69. "browser",
  70. "cypress",
  71. "cypress.io",
  72. "e2e",
  73. "end-to-end",
  74. "integration",
  75. "mocks",
  76. "runner",
  77. "spies",
  78. "stubs",
  79. "test",
  80. "testing"
  81. ]
  82. }