-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.28 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": "@ronomon/direct-io",
"version": "3.0.1",
"description": "Direct IO helpers for block devices and regular files on FreeBSD, Linux, macOS and Windows.",
"main": "binding.node",
"files": [
"benchmark.js",
"binding.c",
"binding.gyp",
"get-block-device",
"test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronomon/direct-io.git"
},
"keywords": [
"_aligned_buffer",
"aligned buffer",
"alignment",
"block size",
"block device path",
"device size",
"direct memory access",
"disk cache",
"disk size",
"dma",
"F_NOCACHE",
"FSCTL_LOCK_VOLUME",
"FSCTL_UNLOCK_VOLUME",
"logical sector size",
"mechanical sympathy",
"O_DIRECT",
"O_DSYNC",
"O_EXCL",
"O_EXLOCK",
"O_SYNC",
"opening block device",
"physical sector size",
"posix_memalign",
"raw disk",
"throughput",
"volume",
"zero copy"
],
"author": "Joran Dirk Greef",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronomon/direct-io/issues"
},
"homepage": "https://github.com/ronomon/direct-io#readme",
"scripts": {
"prepublishOnly": "rm -f binding.node",
"postinstall": "node-gyp clean"
},
"dependencies": {
"@ronomon/queue": "^3.0.1"
}
}