-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "disk-space-monitor",
"type": "module",
"version": "2.0.0",
"description": "Monitor disk space usage and notify user by email or system notification",
"exports": "src/app.js",
"scripts": {
"start": "node src/app.js",
"preinstall": "npm install npm-platform-dependencies && npmpd",
"postinstall": "node src/install-service.js",
"uninstall": "node src/uninstall-service.js"
},
"keywords": [
"disk space",
"monitor"
],
"author": "blu3mania <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/blu3mania/disk-space-monitor#readme",
"bugs": {
"url": "https://github.com/blu3mania/disk-space-monitor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/blu3mania/disk-space-monitor.git"
},
"dependencies": {
"chalk": "^5.3.0",
"diskusage": "^1.2.0",
"node-notifier": "^10.0.1",
"node-windows": "^1.0.0-beta.8",
"nodemailer": "^6.9.13",
"npm-platform-dependencies": "^0.1.0"
},
"win32Dependencies": {
"node-windows": "^1.0.0-beta.8"
},
"darwinDependencies": {
"node-mac": "^1.0.0"
},
"linuxDependencies": {
"node-linux": "^0.1.12"
}
}