forked from medicomdev/nodejs-disks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 758 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 758 Bytes
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
{
"author": "Shaun Hevey",
"name": "nodejs-disks",
"description": "Nodejs module to gets current disk information from Server hosting nodejs application tested on OSX and ubuntu adapted from node-diskfree see Readme",
"version": "0.2.2",
"license": "MIT",
"main": "./lib/disks.js",
"scripts": {
"test": "mocha test/ -R spec -s 300 -t 3000"
},
"repository": {
"type": "git",
"url": "https://github.com/shaun-h/nodejs-disks.git"
},
"keywords": [
"disk",
"disks",
"free space",
"volumes",
"harddisk"
],
"dependencies": {
"async": "~0.2.9",
"numeral": "~1.4.8"
},
"os": [
"darwin",
"linux",
"win32"
],
"devDependencies": {
"mocha": "~1.20.1",
"should": "~4.0.4"
}
}