forked from andrewrk/node-fd-slicer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "@turist/fd-slicer",
"version": "1.1.4",
"description": "safely create multiple ReadStream or WriteStream objects from the same file descriptor",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --check-leaks",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/test.js",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 10000 --reporter spec --check-leaks test/test.js"
},
"license": "MIT",
"files": [
"index.js"
],
"devDependencies": {
"istanbul": "0.3.3",
"mocha": "6.2.2",
"stream-equal": "1.1.1",
"streamsink": "1.2.0"
},
"dependencies": {
"pend": "1.2.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git://github.com/OlliV/node-fd-slicer.git"
},
"bugs": {
"url": "https://github.com/OlliV/node-fd-slicer/issues"
},
"keywords": [
"createReadStream",
"createWriteStream"
]
}