forked from bahmutov/cypress-watch-and-reload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 843 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 843 Bytes
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 <gleb.bahmutov@gmail.com>",
"license": "MIT",
"dependencies": {
"async-wait-until": "1.2.6",
"chokidar": "3.5.3",
"ws": "8.6.0"
},
"devDependencies": {
"cypress": "9.6.0",
"prettier": "2.5.1",
"semantic-release": "17.4.7"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/cypress-watch-and-reload.git"
}
}