UNPKG

2.07 kBJSONView Raw
1{
2 "name": "mongo-seeding",
3 "description": "The ultimate Node.js library for populating your MongoDB database.",
4 "keywords": [
5 "mongo",
6 "mongodb",
7 "seed",
8 "db-seed",
9 "database",
10 "seeding",
11 "db",
12 "ejson"
13 ],
14 "tags": [
15 "mongo",
16 "mongodb",
17 "seed",
18 "db-seed",
19 "database",
20 "seeding",
21 "db",
22 "ejson"
23 ],
24 "author": {
25 "name": "Paweł Kosiec",
26 "email": "pawel@kosiec.net",
27 "url": "https://kosiec.net"
28 },
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/pkosiec/mongo-seeding"
32 },
33 "bugs": {
34 "url": "https://github.com/pkosiec/mongo-seeding/issues"
35 },
36 "version": "3.7.0",
37 "main": "dist/index.js",
38 "files": [
39 "dist/"
40 ],
41 "license": "MIT",
42 "scripts": {
43 "test": "jest -i --ci",
44 "test:unit": "jest unit",
45 "test:integration": "jest integration",
46 "test:coverage": "jest --coverage",
47 "test:watch": "jest --watch --coverage",
48 "build": "npm run cleanup; tsc",
49 "cleanup": "rm -rf ./dist",
50 "preversion": "npm run test; npm run build"
51 },
52 "dependencies": {
53 "bson": "^4.2.2",
54 "debug": "^4.3.1",
55 "extend": "^3.0.0",
56 "import-fresh": "^3.3.0",
57 "mongodb": "^3.6.4"
58 },
59 "devDependencies": {
60 "@types/extend": "^3.0.1",
61 "@types/fs-extra": "^9.0.6",
62 "@types/jest": "^26.0.19",
63 "@types/mongodb": "^3.6.3",
64 "babel-core": "^6.26.0",
65 "fs-extra": "^10.0.0",
66 "jest": "^27.0.4",
67 "ts-jest": "^27.0.3",
68 "typescript": "^4.1.3"
69 },
70 "jest": {
71 "verbose": false,
72 "transform": {
73 "^.+\\.tsx?$": "ts-jest"
74 },
75 "coverageReporters": [
76 "text",
77 "lcov",
78 "json"
79 ],
80 "coveragePathIgnorePatterns": [
81 "/node_modules/",
82 "/test/integration/_importdata/",
83 "/test/_helpers.ts"
84 ],
85 "testRegex": "(/test/[^_][a-zA-Z0-9-/]*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
86 "moduleFileExtensions": [
87 "ts",
88 "tsx",
89 "js",
90 "jsx",
91 "json",
92 "node"
93 ]
94 },
95 "gitHead": "ae4f19b721c3307c1d66ef43f50cc7ff0e9371e1"
96}