This repository has been archived by the owner on Dec 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.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
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
{
"name": "gooseberry",
"description": "Mongoose seeder with smart IDs and validation",
"version": "0.1.6",
"author": "hennessyevan @hennessyevan",
"bin": {
"gooseberry": "./bin/run"
},
"bugs": "https://github.com/hennessyevan/gooseberry/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"chalk": "^2.4.2",
"cli-ux": "^5.3.2",
"globby": "^10",
"listr": "^0.14.3",
"listr-input": "^0.1.3",
"load-any-file": "^1.3.0",
"load-json-file": "^6.2.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"p-each-series": "^2.1.0",
"tslib": "^1",
"write-json-file": "^4.2.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1.2.5",
"@types/bson": "^4.0.0",
"@types/faker": "^4.1.5",
"@types/listr": "^0.14.2",
"@types/lodash.get": "^4.4.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.set": "^4.3.6",
"@types/mongoose": "^5.5.15",
"@types/node": "^10",
"faker": "^4.1.0",
"mocha": "^5",
"mongodb-memory-server": "^5.2.0",
"mongoose": "^5.6.11",
"nyc": "^14.1.1",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"printWidth": 100
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/hennessyevan/gooseberry",
"gooseberry": {
"modelDir": "./demo/models",
"mongoURI": "mongodb://localhost:27017/test",
"dataDir": "./demo/data",
"dropDatabase": true,
"top": [
"User"
]
},
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "gooseberry",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "hennessyevan/gooseberry",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"start": "./bin/run",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts",
"peerDependencies": {
"mongoose": "^5.6.11"
}
}