forked from work-in-progress/mongoose-from-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"author": "Martin Wawrusch <[email protected]> (http://martinatsunset.com)",
"name": "mongoose-from-json-schema",
"description": "Transform a json-schema into a mongoose schema.",
"version": "0.0.1",
"main" : "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/scottyapp/mongoose-from-json-schema.git"
},
"bin" : {
},
"directories" : {
"lib" : "./lib",
"test" : "./spec"
},
"keywords" : [
"mongoose","json","schema","json-schema"
],
"scripts": {
"test": "node_modules/.bin/vows --spec spec/*-spec.coffee",
"watch" : "coffee -c -w -o lib src"
},
"engines": {
"node": ">=0.4.8"
},
"dependencies": {
"mongoose": "2.3.x",
"mongoose-types" : "1.0.x",
"lingo": "0.0.x",
"underscore" : "1.2.x",
"async" : "0.1.x",
"colors" : "~ 0.5",
"pkginfo" : "~ 0.2"
},
"devDependencies": {
"should" : ">=0.2.1",
"coffee-script" : ">= 1.1.2",
"vows" : ">= 0.5.9",
"express" : "2.4.x",
"gleak" : ">=0.2.1",
"database-cleaner" : ">= 0.5.0"
},
"bugs": { "url": "http://github.com/scottyapp/mongoose-from-json-schema/issues" },
"licenses": [
{ "type": "MIT",
"url": "http://github.com/scottyapp/mongoose-from-json-schema/raw/master/LICENSE"
}
]
}