-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
40 lines (40 loc) · 882 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
37
38
39
40
{
"name": "lei-stream",
"version": "1.4.2",
"description": "Read/Write Stream",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "mocha -t 5000",
"debug_test": "export DEBUG='lei:stream:*' && mocha -t 120000"
},
"repository": {
"type": "git",
"url": "https://github.com/leizongmin/node-lei-stream.git"
},
"keywords": [
"stream",
"read",
"write",
"line"
],
"author": "Zongmin Lei <leizongmin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leizongmin/node-lei-stream/issues"
},
"homepage": "https://github.com/leizongmin/node-lei-stream",
"dependencies": {
"@types/node": "^7.0.18",
"async": "^2.1.4",
"debug": "^2.6.1",
"lei-utils": "^3.1.0"
},
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.2.0"
}
}