-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 845 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": "readline-transform",
"version": "1.0.0",
"description": "Transform stream to read line-by-line and write a string",
"main": "index.js",
"scripts": {
"test": "mocha",
"ci_test": "nyc npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"stream",
"transform",
"readline",
"byline"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tilfin/readline-transform.git"
},
"bugs": {
"url": "https://github.com/tilfin/readline-transform/issues"
},
"homepage": "https://github.com/tilfin/readline-transform#readme",
"author": "Toshimitsu Takahashi",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.4",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"engines": {
"node": ">=6"
}
}