-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 844 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
{
"name": "mongodb-writable-stream",
"version": "0.0.1-alpha",
"description": "Pipe a Node.js stream into a MongoDB collection and out again if needed",
"main": "index.js",
"dependencies": {
"readable-stream": ">= 1.0.0",
"setimmediate": ">= 1.0.1"
},
"devDependencies": {
"tap": ">= 0.4.0"
},
"scripts": {
"test": "./node_modules/.bin/tap ./test/"
},
"repository": {
"type": "git",
"url": "https://github.com/mimetnet/mongodb-writable-stream"
},
"keywords": [
"mongodb",
"mongo",
"writable",
"readable",
"duplex",
"stream",
"pipe"
],
"author": {
"name": "Matthew I. Metnetsky",
"email": "matthew@cowarthill.com"
},
"licenses": [
{
"type": "MIT +no-false-attribs",
"url": "https://fedoraproject.org/wiki/Licensing/MITNFA"
}
]
}