-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 820 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": "mongo-schema-gen",
"version": "0.0.2",
"description": "Simple mongoDB collection schema generator",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toystars/mongo-schema-gen.git"
},
"keywords": [
"MongoDB",
"Schema",
"Mongo-Schema",
"Mongo-Doc"
],
"author": "Mustapha Babatunde Oluwaleke",
"license": "MIT",
"bugs": {
"url": "https://github.com/toystars/mongo-schema-gen/issues"
},
"homepage": "https://github.com/toystars/mongo-schema-gen#readme",
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2"
},
"dependencies": {
"extend": "^3.0.0",
"mongodb": "^2.2.9",
"underscore": "^1.8.3"
}
}