This repository was archived by the owner on Apr 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
{
"name": "gulp-mongodb-data",
"description": "Load JSON files and mongoexport dumps into MongoDB with Gulp (gulpjs.com)",
"version": "4.0.0",
"homepage": "https://github.com/benne/gulp-mongodb-data",
"repository": {
"type": "git",
"url": "https://github.com/benne/gulp-mongodb-data.git"
},
"author": "Benne <benne@chaosbyte.com> (https://benne.io/)",
"main": "./index.js",
"dependencies": {
"async": "^3.2.0",
"json2mongo": "^2.0.0",
"mongodb": "^3.6.2",
"mongodb-core": "^3.2.7",
"plugin-error": "^1.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"eslint": "^7.12.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"mocha": "^8.2.0",
"mocha-junit-reporter": "^2.0.0",
"should": "^13.2.3",
"vinyl": "^2.2.1"
},
"scripts": {
"lint": "gulp lint",
"test": "mocha",
"test-ci": "mocha --reporter mocha-junit-reporter"
},
"keywords": [
"gulp",
"gulpplugin",
"gulp-mongodb",
"gulp-mongodb-data",
"mongodb",
"mongoexport"
],
"license": "MIT"
}