-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "node-disk-info",
"version": "1.3.0",
"description": "Node module to get disk information in Windows, Linux, Mac, FreeBSD & OpenBSD. It works with Electron.",
"homepage": "https://github.com/cristiammercado/node-disk-info",
"bugs": {
"email": "contact@cristiammercado.com",
"url": "https://github.com/cristiammercado/node-disk-info/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "nyc jasmine-ts --config=jasmine.json",
"example": "node ./example/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cristiammercado/node-disk-info.git"
},
"keywords": [
"disk info",
"disk",
"disks",
"info",
"free space",
"volumes",
"harddisk",
"hard drive",
"node",
"npm",
"electron"
],
"author": {
"name": "Cristiam Mercado",
"email": "contact@cristiammercado.com",
"url": "https://cristiammercado.com/en"
},
"license": "MIT",
"dependencies": {
"iconv-lite": "^0.6.2"
},
"devDependencies": {
"@ert78gb/jasmine-ts": "^0.3.2",
"@types/jasmine": "^3.6.10",
"@types/node": "^15.0.1",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"mem": "^8.1.1",
"minimist": "^1.2.5",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"yargs-parser": "^20.2.7"
},
"engines": {
"node": ">= 12"
}
}