-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 888 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
{
"main": "index.js",
"dependencies": {
"line-by-line": "^0.1.3"
},
"devDependencies": {
"bluebird": "^2.9.25",
"jshint": "^2.7.0"
},
"name": "line-by-line-promise",
"version": "0.0.1",
"description": "A wrapper of line-by-line module that returns a promise for every line read, enabling generator operations",
"scripts": {
"test": "jshint --exclude-path .gitignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/ericlu88/line-by-line-promise.git"
},
"keywords": [
"line",
"file",
"promise",
"generator"
],
"author": "Eric Lu",
"contributors": [
"Eric N. Vander Weele <[email protected]> (http://github.com/ericvw)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ericlu88/line-by-line-promise/issues"
},
"homepage": "https://github.com/ericlu88/line-by-line-promise"
}