-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 744 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 744 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
{
"name": "tailfd",
"description": "Tail a file. This will continue to work even if a file is unlinked rotated or truncated. It is also ok if the path doesnt exist before watching it",
"version": "0.1.6",
"author": "Ryan Day <soldair@gmail.com>",
"keywords": [
"watch",
"tail",
"descriptors",
"log",
"fs"
],
"main": "./tail.js",
"homepage": "http://github.com/soldair/node-tailfd",
"repository": {
"type": "git",
"url": "git://github.com/soldair/node-tailfd.git"
},
"scripts": {
"test": "tap test/*.js"
},
"devDependencies": {
"tap": "*",
"jshint": "0.5.x"
},
"engines": {
"node": ">=0.6.0"
},
"dependencies": {
"watchfd":"~0.0.12"
},
"license" : "MIT/X11"
}