-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
49 lines (49 loc) · 1.29 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-gen",
"version": "2.1.1",
"description": "generates mongoose schemas from json documents",
"homepage": "https://github.com/topliceanu/mongoose-gen",
"license": "MIT",
"keywords": [
"mongoose",
"mongodb",
"schema",
"json"
],
"author": "alexandru topliceanu <[email protected]> (http://alexandru.topliceanu.ro)",
"repository": {
"type": "git",
"url": "git://github.com/topliceanu/mongoose-gen.git"
},
"bugs": {
"url": "https://github.com/topliceanu/mongoose-gen/issues"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"coveralls": "./node_modules/.bin/mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/.bin/coveralls",
"coverage": "./node_modules/.bin/mocha --require blanket --reporter html-cov | google-chrome",
"lint": "./node_modules/.bin/jshint ./lib ./test"
},
"dependencies": {
"underscore": "1.8.3",
"mongoose": "4.3.4"
},
"devDependencies": {
"blanket": "1.1.6",
"coveralls": "2.11.2",
"jshint": "2.6.0",
"mocha": "2.1.0",
"mocha-lcov-reporter": "0.0.1",
"q": "1.1.2"
},
"optionalDependencies": {},
"engines": {
"node": ">0.10.0"
},
"config": {
"blanket": {
"pattern": "lib/generator.js"
}
}
}