-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.13 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
51
52
53
54
{
"name": "mongoose-aliasfield",
"description": "Field alias support for mongoose",
"version": "0.3.7",
"author": {
"name": "Fabrizio Ruggeri",
"email": "[email protected]",
"url": "http://www.ramielcreations.com/"
},
"license": "GPL-2.0",
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.js"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^1.0.1",
"grunt-mocha-cov": "^0.4.0",
"mocha": "^3.2.0",
"mongoose": "<4.10.0"
},
"peerDependencies": {
"mongoose": ">=2 <4.10.0"
},
"keywords": [
"mongoose",
"mongo",
"mongodb",
"alias",
"field"
],
"homepage": "http://www.ramielcreations.com/projects/alias-fields-plugin-for-mongoose/",
"repository": {
"type": "git",
"url": "git://github.com/ramiel/mongoose-aliasfield.git"
},
"bugs": {
"url": "https://github.com/ramiel/mongoose-aliasfield/issues/new"
},
"config": {
"blanket": {
"pattern": [
"lib"
],
"data-cover-never": [
"node_modules",
"tests"
]
}
},
"engines": {
"node": ">=0.4.0"
}
}