-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 848 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
{
"name": "cypress-wait-for-stable-dom",
"version": "0.1.0",
"description": "Cypress command to wait until DOM has finished changing",
"main": "src",
"types": "src",
"files": [
"src"
],
"scripts": {
"test": "cypress run",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/narinluangrath/cypress-wait-for-stable-dom.git"
},
"keywords": [
"cypress",
"cypress-custom-command",
"cypress-wait-for-stable-dom"
],
"author": "Narin Luangrath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/narinluangrath/cypress-wait-for-stable-dom/issues"
},
"homepage": "https://github.com/narinluangrath/cypress-wait-for-stable-dom#readme",
"devDependencies": {
"cypress": "^9.2.0"
}
}