-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 850 Bytes
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": "stringify-stream",
"version": "1.0.5",
"description": "Streaming Transform of objects via JSON.stringify",
"dependencies": {
"readable-stream": "~2.1.0"
},
"devDependencies": {
"concat-stream": "~1.5.0",
"stream-array": "~1.1.0",
"tape": "~4.5.0"
},
"scripts": {
"test": "./node_modules/.bin/tape ./test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mimetnet/node-stringify-stream"
},
"bugs": {
"url": "https://github.com/mimetnet/node-stringify-stream/issues"
},
"keywords": [
"writable",
"readable",
"duplex",
"transform",
"stream",
"pipe"
],
"author": "Matthew I. Metnetsky <matthew@cowarthill.com>",
"license": "MIT",
"engines": [
"node >= 0.8.0"
],
"main": "index.js",
"directories": {
"test": "test"
}
}