-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 846 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
{
"name": "cypress-watch-and-reload",
"version": "0.0.0-development",
"description": "Reloads Cypress when one of the watched files changes",
"scripts": {
"test": "cypress run",
"test:config": "cypress run --config-file cypress/cypress.json",
"semantic-release": "semantic-release",
"cy:open": "cypress open"
},
"keywords": [
"cypress",
"cypress-io",
"plugin"
],
"files": [
"*.js",
"ui"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"dependencies": {
"async-wait-until": "1.2.6",
"chokidar": "3.6.0",
"ws": "8.18.1"
},
"devDependencies": {
"cypress": "10.11.0",
"prettier": "2.5.1",
"semantic-release": "17.4.7"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-watch-and-reload.git"
}
}