-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 937 Bytes
/
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
{
"name": "convert-json-schema-to-mongoose",
"version": "0.3.2",
"description": "A library for converting JSON schema to mongoose 5 schema",
"keywords": [
"json",
"schema",
"convert",
"mongo",
"mongoose"
],
"homepage": "https://github.com/kristianmandrup/convert-json-schema-to-mongoose",
"repository": {
"url": "https://github.com/kristianmandrup/convert-json-schema-to-mongoose",
"type": "git"
},
"bugs": {
"url": "https://github.com/kristianmandrup/convert-json-schema-to-mongoose/issues"
},
"private": false,
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"mongoose": "^8.8.0"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.7",
"jasmine-node": "^3.0.0"
},
"scripts": {
"test": "node_modules/.bin/jasmine-node ./test",
"start": "node index.js"
},
"main": "index"
}