-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.48 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "electronmon",
"version": "2.0.3",
"description": "watch and reload your electron app the easy way",
"main": "src/electronmon.js",
"bin": {
"electronmon": "./bin/cli.js"
},
"scripts": {
"lint": "eslint bin src",
"test": "mocha --timeout 20000 --retries=1",
"ciinspect": "xvfb-maybe electron --version",
"citest": "xvfb-maybe retry -n 3 -- npm test",
"fixture": "cd fixtures && node ../bin/cli.js ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdad/electronmon.git"
},
"author": "Kiril Vatev <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/catdad/electronmon/issues"
},
"homepage": "https://github.com/catdad/electronmon#readme",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"electron": "^23.1.0",
"eslint": "^5.16.0",
"fs-extra": "^8.1.0",
"mocha": "^6.2.2",
"node-stream": "^1.7.0",
"retry-cli": "0.6.0",
"symlink-dir": "^3.1.1",
"unstyle": "^0.1.0",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"chalk": "^3.0.0",
"import-from": "^3.0.0",
"runtime-required": "^1.1.0",
"watchboy": "^0.4.3"
},
"keywords": [
"electron",
"reload",
"reloader",
"livereload",
"auto-reload",
"live-reload",
"refresh",
"restart",
"watch",
"watcher",
"watching",
"monitor",
"hot",
"files",
"fs",
"dev",
"development",
"node"
]
}