-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 879 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
37
38
39
40
41
42
{
"name": "cypress-hmr-restarter",
"version": "2.1.1",
"description": "A Cypress plugin which restarts tests on webpack-dev-server HMR updates",
"keywords": [
"cypress",
"plugin",
"webpack-dev-server",
"hmr"
],
"license": "MIT",
"scripts": {
"update": "npm-check --update",
"release": "release-it"
},
"release-it": {
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
},
"author": "Torleif Berger <[email protected]> (https://www.geekality.net)",
"repository": {
"type": "git",
"url": "https://github.com/svish/cypress-hmr-restarter"
},
"main": "index.js",
"files": [
"index.js",
"gatsby.js"
],
"peerDependencies": {
"cypress": ">=0.20.0"
},
"devDependencies": {
"npm-check": "^6.0.1",
"prettier": "^2.8.7",
"release-it": "^15.10.1"
}
}