-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "node-mongo-seeds",
"version": "3.1.0",
"description": "A tool to populate a mongo db from json files",
"repository": {
"type": "git",
"url": "https://github.com/toymachiner62/node-mongo-seeds"
},
"keywords": [
"node",
"mongo",
"seed"
],
"author": "Tom Caflisch <tomcaflisch@gmail.com>",
"main": "./lib/seed.js",
"bin": {
"seed": "./bin/seed",
"seed-setup": "./bin/setup"
},
"scripts": {
"test-coverage": "nyc --reporter=lcov npm run test",
"test-spec": "nyc --reporter=text npm run test",
"test": "mocha --timeout 5000",
"setup": "node ./bin/setup",
"seed": "node ./bin/seed"
},
"directories": {
"bin": "./bin"
},
"preferGlobal": "true",
"license": "MIT",
"engines": {
"node": ">=6"
},
"dependencies": {
"commander": "^2.15.1",
"errno": "^0.1.7",
"json2mongo": "^2.0.0",
"lodash": "^4.17.10",
"mongodb": "^3.0.10"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-fs": "^2.0.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1"
}
}