-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "cypress-wait-until",
"version": "3.0.2",
"description": "A waiting plugin for Cypress",
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"cypress": "12.13.0",
"cz-conventional-changelog": "3.3.0",
"git-cz": "4.9.0",
"serve": "14.2.0",
"start-server-and-test": "2.0.0",
"typescript": "5.0.4",
"@semantic-release/npm": "10.0.3",
"semantic-release": "21.0.2"
},
"types": "index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"cypressUploadRecordings": true
},
"scripts": {
"commit": "git-cz",
"serve": "serve public",
"cy:open": "cypress open",
"test": "npm run typescript && npm run cy:start-server-and-test",
"cy:start-server-and-test": "start-server-and-test serve :3000 cy:run",
"cy:run": "cypress run",
"typescript": "tsc --project ./tsconfig.json",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoriSte/cypress-wait-until.git"
},
"keywords": [
"cypress",
"promise",
"recursive-promise",
"wait",
"open-source-saturday"
],
"author": "NoriSte <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoriSte/cypress-wait-until/issues"
},
"homepage": "https://github.com/NoriSte/cypress-wait-until#readme"
}