UNPKG

1.21 kBJSONView Raw
1{
2 "name": "eslint-plugin-cypress",
3 "version": "2.10.2",
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",
39 "semantic-release": "semantic-release",
40 "start": "yarn run test-watch",
41 "test": "jest",
42 "test-watch": "jest --watchAll"
43 },
44 "jest": {
45 "testMatch": [
46 "**/tests/**/*.js"
47 ]
48 }
49}