forked from Osterjour/line-by-line
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 877 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
{
"author": "Markus Ostertag <mo@mo-its.de>",
"contributors": ["Markus von der Wehd <mvdw@mwin.de>"],
"name": "line-by-line",
"description": "A NodeJS module that helps you reading large text files, line by line, without buffering the files into memory.",
"version": "0.1.6",
"keywords": [ "line", "file", "reader", "fs" ],
"homepage": "https://github.com/Osterjour/line-by-line",
"repository": {
"type": "git",
"url": "git@github.com:Osterjour/line-by-line.git"
},
"main": "line-by-line.js",
"dependencies": {
"autodetect-decoder-stream": "^1.0.0",
"iconv-lite": "^0.4.15"
},
"devDependencies": {
"jshint": "2.5.x"
},
"scripts": {
"test": "jshint ."
},
"optionalDependencies": { },
"engines": {
"node": ">=0.8.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/Osterjour/line-by-line/master/LICENSE.txt"
}
]
}