forked from eugeneware/fs-tail-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 807 Bytes
/
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
{
"name": "fs-tail-stream",
"version": "1.1.0",
"description": "fs.createReadStream that supports ongoing tailing of files",
"main": "index.js",
"scripts": {
"pretest": "semistandard",
"test": "node_modules/.bin/tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/eugeneware/fs-tail-stream"
},
"keywords": [
"fs",
"createReadStream",
"tail",
"tailing",
"watch",
"watching"
],
"author": "Eugene Ware <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/eugeneware/fs-tail-stream/issues"
},
"dependencies": {
"once": "^1.4.0"
},
"devDependencies": {
"concat-stream": "^1.6.0",
"redtape": "^1.0.0",
"semistandard": "^9.2.1",
"tape": "^4.4.0"
}
}