forked from foretagsplatsen/eslint-plugin-cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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
53
54
55
{
"name": "@finsit/eslint-plugin-cypress",
"version": "3.1.1",
"description": "An ESLint plugin for projects using Cypress",
"main": "index.js",
"author": "Chris Breiding ([email protected])",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"cypress"
],
"repository": {
"type": "git",
"url": "git+https://github.com/foretagsplatsen/eslint-plugin-cypress.git"
},
"bugs": {
"url": "https://github.com/foretagsplatsen/eslint-plugin-cypress/issues"
},
"homepage": "https://github.com/foretagsplatsen/eslint-plugin-cypress#readme",
"engines": {
"node": ">=8.10.0"
},
"peerDependencies": {
"eslint": ">= 7.0.0"
},
"dependencies": {
"globals": "^13.15.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-plugin-eslint-plugin": "^5.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"generator-eslint": "^4.0.0",
"jest": "^28.1.1",
"semantic-release": "19.0.3"
},
"scripts": {
"publish": "npm publish --access public",
"make-rule": "npx yo eslint:rule",
"lint": "eslint --ext js,cjs --report-unused-disable-directives .",
"lint-fix": "npm run lint -- --fix",
"semantic-release": "semantic-release",
"start": "npm run test-watch",
"test": "jest",
"test:v7": "npm i [email protected] && npm run test",
"test-watch": "jest --watchAll"
},
"jest": {
"testMatch": [
"**/tests/**/*.js"
]
}
}