-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "eslint-plugin-cypress",
"version": "0.0.0-development",
"description": "An ESLint plugin for projects using Cypress",
"main": "legacy.js",
"exports": {
".": "./legacy.js",
"./flat": "./lib/flat.js"
},
"author": "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": ">=9"
},
"dependencies": {
"globals": "^15.11.0"
},
"devDependencies": {
"eslint": "^9.13.0",
"eslint-plugin-eslint-plugin": "^6.3.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.11.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"semantic-release": "24.2.0"
},
"scripts": {
"lint": "eslint \"*.js\" \"**/**/*.js\"",
"lint-fix": "npm run lint -- --fix",
"semantic-release": "semantic-release",
"start": "npm run test-watch",
"test": "jest",
"test:legacy": "jest --config jest.config-legacy.js",
"test-watch": "jest --watchAll",
"prepare": "husky"
}
}