forked from elrolito/mongoose-i18n
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "mongoose-i18n",
"version": "0.2.0",
"description": "Mongoose schema plugin for i18n support.",
"author": {
"name": "Rolando Henry",
"email": "[email protected]",
"url": "https://github.com/elrolito"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elrolito/mongoose-i18n"
},
"bugs": {
"url": "https://github.com/elrolito/mongoose-i18n/issues"
},
"main": "lib/mongoose-i18n.js",
"dependencies": {
"lodash": "^2.4.1",
"mongoose": "^3.8.8"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
"coffee-script": "^1.8.0",
"debug": "^2.1.1",
"grunt": "^0.4.4",
"grunt-contrib-coffee": "^0.10.1",
"grunt-contrib-watch": "^0.6.1",
"istanbul": "duereg/istanbul",
"mocha": "^2.0.1",
"q": "^1.1.2"
},
"scripts": {
"test": "NODE_ENV=test node_modules/.bin/mocha --compilers coffee:coffee-script/register --reporter dot test/**/*.test.coffee",
"coverage": "NODE_ENV=test node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --compilers coffee:coffee-script/register --reporter dot test/**/*.test.coffee"
},
"keywords": [
"Mongoose",
"i18n"
],
"readmeFilename": "README.md"
}