forked from NoriSte/cypress-wait-until
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "cypress-wait-until",
"version": "1.4.2",
"description": "A waiting plugin for Cypress",
"main": "src/index.js",
"dependencies": {},
"devDependencies": {
"cypress": "8.1.0",
"cz-conventional-changelog": "3.3.0",
"git-cz": "4.7.6",
"serve": "12.0.0",
"start-server-and-test": "1.13.1",
"typescript": "4.3.5",
"@semantic-release/npm": "7.1.3",
"semantic-release": "17.4.4"
},
"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 :5000 cy:run-uploading-videos",
"cy:run-uploading-videos": "node cypress-run.js",
"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 <nori.ste.magni@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoriSte/cypress-wait-until/issues"
},
"homepage": "https://github.com/NoriSte/cypress-wait-until#readme"
}