forked from rueckstiess/mgeneratejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "@econsult/mgeneratejs",
"description": "Generate rich random data based on a JSON template file.",
"version": "1.0.2",
"scripts": {
"fmt": "prettier --write '**/*.{js,md}'",
"check": "prettier --check '**/*.{js,md}'",
"test": "mocha",
"ci": "npm run check && npm test"
},
"bin": {
"mgeneratejs": "bin/mgenerate.js"
},
"homepage": "https://github.com/j1m-renwick/mgeneratejs",
"repository": {
"type": "git",
"url": "git://github.com/j1m-renwick/mgeneratejs.git"
},
"dependencies": {
"@faker-js/faker": "^7.4.0",
"bson": "^4.6.3",
"chance": "^1.1.8",
"event-stream": "^4.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongodb-extended-json": "^1.11.1",
"yargs": "^17.4.1"
},
"devDependencies": {
"mocha": "^6.2.3",
"pre-commit": "^1.1.2",
"prettier": "1.18.2",
"sinon": "^14.0.0"
},
"license": "Apache-2.0",
"precommit": [
"check"
],
"bugs": {
"url": "https://github.com/j1m-renwick/mgeneratejs/issues"
},
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"keywords": [
"mongodb",
"generate",
"mock"
],
"author": "Jim Renwick"
}