forked from DScheglov/mongoose-schema-jsonschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·49 lines (49 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
{
"name": "mongoose-schema-jsonschema",
"version": "1.2.1",
"description": "Mongoose extention that allows to build json schema for mongoose models, schemas and queries",
"main": "index.js",
"scripts": {
"test-loc": "NODE_ENV=test istanbul cover _mocha -- -R spec",
"test": "./test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DScheglov/mongoose-schema-jsonschema.git"
},
"keywords": [
"jsonschema",
"json",
"schema",
"mongoose",
"model",
"query",
"json schema",
"build",
"create"
],
"author": "Dmitry Scheglov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DScheglov/mongoose-schema-jsonschema/issues"
},
"homepage": "https://github.com/DScheglov/mongoose-schema-jsonschema#readme",
"devDependencies": {
"ajv": "^5.5.2",
"async": "^2.6.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jsonschema": "^1.2.2",
"mocha": "^5.2.0",
"mongoose": "^4.13.8 || ^5.0.0"
},
"peerDependencies": {
"mongoose": ">= 4.8.5 <= 5.x"
},
"dependencies": {
"pluralize": "^7.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}