-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
executable file
·118 lines (118 loc) · 2.4 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "mongo-seeding-cli",
"description": "The ultimate command line tool for populating your MongoDB database.",
"homepage": "https://mongo-seeding.kosiec.dev",
"version": "4.0.1",
"license": "MIT",
"author": {
"name": "Paweł Kosiec",
"email": "[email protected]",
"url": "https://kosiec.dev"
},
"maintainers": [
{
"name": "Paweł Kosiec",
"email": "[email protected]",
"url": "https://kosiec.dev"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pkosiec/mongo-seeding.git"
},
"bugs": {
"url": "https://github.com/pkosiec/mongo-seeding/issues"
},
"keywords": [
"mongo",
"mongodb",
"seed",
"db-seed",
"database",
"seeding",
"db",
"cli",
"command-line",
"command-line-interface",
"command",
"line",
"interface"
],
"tags": [
"mongo",
"mongodb",
"seed",
"db-seed",
"database",
"seeding",
"db",
"cli",
"command-line",
"command-line-interface",
"command",
"line",
"interface"
],
"main": "dist/index.js",
"files": [
"dist/",
"bin/"
],
"bin": {
"seed": "bin/seed.js"
},
"scripts": {
"build": "npm run cleanup; tsc",
"cleanup": "rm -rf ./dist",
"preversion": "npm run build",
"test": "jest -i",
"test:unit": "jest unit",
"test:integration": "jest integration",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --coverage"
},
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^7.0.1",
"extend": "^3.0.2",
"mongo-seeding": "^4.0.1",
"ts-node": "^10.3.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/command-line-args": "^5.0.0",
"@types/extend": "^3.0.1",
"@types/jest": "^29.0.3",
"@types/node": "^20.10.0",
"jest": "^29.1.1",
"mongodb": "^6.1.0",
"ts-jest": "^29.1.1"
},
"jest": {
"verbose": false,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"coverageReporters": [
"text",
"lcov",
"json"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/integration/_importdata/"
],
"testRegex": "(/test/[^_][a-zA-Z0-9/]*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"volta": {
"extends": "../package.json"
}
}