package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "eslint-plugin-cypress",
  3. "version": "2.12.1",
  4. "description": "An ESLint plugin for projects using Cypress",
  5. "main": "index.js",
  6. "author": "Chris Breiding (chris@cypress.io)",
  7. "license": "MIT",
  8. "keywords": [
  9. "eslint",
  10. "eslintplugin",
  11. "cypress"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/cypress-io/eslint-plugin-cypress.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/cypress-io/eslint-plugin-cypress/issues"
  19. },
  20. "homepage": "https://github.com/cypress-io/eslint-plugin-cypress#readme",
  21. "peerDependencies": {
  22. "eslint": ">= 3.2.1"
  23. },
  24. "dependencies": {
  25. "globals": "^11.12.0"
  26. },
  27. "devDependencies": {
  28. "@cypress/eslint-plugin-dev": "3.2.0",
  29. "@cypress/eslint-plugin-json": "3.2.1",
  30. "condition-circle": "2.0.2",
  31. "eslint": "^5.7.0",
  32. "husky": "^3.0.0",
  33. "jest": "^24.8.0",
  34. "semantic-release": "15.13.18"
  35. },
  36. "scripts": {
  37. "precommit": "npm run lint",
  38. "lint": "eslint '*.js' '**/**/*.js'",
  39. "lint-fix": "npm run lint -- --fix",
  40. "semantic-release": "semantic-release",
  41. "start": "yarn run test-watch",
  42. "test": "jest",
  43. "test:v4": "npm i eslint@4.x && npm run test",
  44. "test:v6": "npm i eslint@6.x && npm run test",
  45. "test-watch": "jest --watchAll"
  46. },
  47. "jest": {
  48. "testMatch": [
  49. "**/tests/**/*.js"
  50. ]
  51. }
  52. }