forked from dmtrKovalenko/cypress-real-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "cypress-real-events",
"version": "1.0.1",
"description": "Real native events for cypress. Dispatched via CDP.",
"author": "Dmitriy Kovalenko",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "yarn eslint './{src,cypress}/**/*.ts'",
"release": "yarn build && yarn version && node scripts/release.js && yarn publish dist",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"cypress": "^4.x || ^5.x || ^6.x || ^7.x || ^8.x || ^9.x"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"cypress": "^9.0.0",
"eslint": "^7.14.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-no-only-tests": "^2.4.0",
"fs-extra": "^9.0.1",
"semantic-release": "^17.3.0",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dmtrKovalenko/cypress-real-events.git"
},
"release": {
"branches": [
"main"
]
}
}