forked from pkosiec/mongo-seeding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·96 lines (96 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "mongo-seeding",
"description": "The ultimate Node.js library for populating your MongoDB database.",
"keywords": [
"mongo",
"mongodb",
"seed",
"db-seed",
"database",
"seeding",
"db",
"ejson"
],
"tags": [
"mongo",
"mongodb",
"seed",
"db-seed",
"database",
"seeding",
"db",
"ejson"
],
"author": {
"name": "Paweł Kosiec",
"email": "[email protected]",
"url": "https://www.kosiec.net"
},
"repository": {
"type": "git",
"url": "https://github.com/pkosiec/mongo-seeding"
},
"bugs": {
"url": "https://github.com/pkosiec/mongo-seeding/issues"
},
"version": "3.4.0",
"main": "dist/index.js",
"files": [
"dist/"
],
"license": "MIT",
"scripts": {
"test": "jest -i --ci",
"test:unit": "jest unit",
"test:integration": "jest integration",
"test:coverage": "jest --coverage",
"test:upload-coverage": "codecov -C -F core",
"test:watch": "jest --watch --coverage",
"build": "npm run cleanup; tsc",
"cleanup": "rm -rf ./dist",
"preversion": "npm run test; npm run build"
},
"dependencies": {
"bson": "^4.0.3",
"debug": "^4.1.1",
"extend": "^3.0.0",
"mongodb": "3.3.2"
},
"devDependencies": {
"@types/extend": "^3.0.1",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^25.1.2",
"@types/mongodb": "^3.3.16",
"babel-core": "^6.26.0",
"codecov": "^3.6.5",
"fs-extra": "^8.1.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"jest": {
"verbose": false,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coverageReporters": [
"text",
"lcov",
"json"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/integration/_importdata/",
"/test/_helpers.ts"
],
"testRegex": "(/test/[^_][a-zA-Z0-9-/]*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}