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