forked from AbdullahAli/node-stream-to-mongo-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "stream-to-mongo-db",
"version": "1.6.0",
"description": "Stream data directly to MongoDB",
"main": "out/index.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js -d out/ src/",
"prepare": "./node_modules/babel-cli/bin/babel.js -d out/ src/",
"prepublishOnly": "npm run prepare",
"test": "./node_modules/babel-cli/bin/babel-node.js src/spec/support/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/AbdullahAli/stream-to-mongo-db.git"
},
"keywords": [
"stream",
"mongo",
"mongodb",
"pipe",
"stream to mongodb",
"stream to mongo db",
"stream to mongo",
"mongo stream",
"write to mongo",
"mongo write stream"
],
"author": "Abdullah Ali",
"license": "MIT",
"bugs": {
"url": "https://github.com/AbdullahAli/stream-to-mongo-db/issues"
},
"homepage": "https://github.com/AbdullahAli/stream-to-mongo-db",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"gulp": "^3.9.1",
"gulp-shell": "^0.6.3",
"jasmine": "^2.4.1"
},
"dependencies": {
"JSONStream": "^1.3.5",
"mongodb": "^3.1.10"
}
}