forked from yan-foto/electron-reload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 936 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
43
44
45
{
"name": "@millyc/electron-reload",
"version": "3.0.0",
"description": "Simplest way to reload an electron app on file changes!",
"main": "main.js",
"types": "./types/main.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Milly/electron-reload.git"
},
"keywords": [
"electron",
"reload",
"auto-reload",
"node"
],
"author": {
"name": "Milly",
"email": "[email protected]",
"url": "https://github.com/Milly"
},
"contributors": [
"Yan Foto <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Milly/electron-reload/issues"
},
"dependencies": {
"chokidar": "^3.5.3"
},
"devDependencies": {
"standard": "^17.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}