-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1011 Bytes
/
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
{
"name": "cypress-skip-and-only-ui",
"version": "0.0.0-development",
"description": "Client-side buttons to run a single test or skip it for Cypress test runner",
"main": "index.js",
"scripts": {
"test": "cypress run",
"semantic-release": "semantic-release",
"cy:open": "cypress open",
"build": "tsc --skipLibCheck",
"watch": "tsc --skipLibCheck --watch"
},
"keywords": [
"cypress",
"cypress-io",
"cypress-plugin"
],
"author": "Gleb Bahmutov <[email protected]> (https://glebbahmutov.com/)",
"license": "ISC",
"dependencies": {
"falafel": "2.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"ramda": "0.29.1"
},
"devDependencies": {
"@types/node": "18.11.11",
"cypress": "13.7.3",
"semantic-release": "23.0.8",
"typescript": "5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-skip-and-only-ui.git"
},
"files": [
"*.js",
"*.d.ts"
],
"types": "*.d.ts"
}