forked from paulcsmith/mongoose-currency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 791 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
{
"name": "mongoose-currency",
"version": "0.3.0",
"description": "Adds schema type \"currency\" to mongoose. Great for converting user input.",
"main": "index.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/catalystmediastudios/mongoose-currency.git"
},
"keywords": [
"mongoose",
"currency",
"money"
],
"author": {
"name": "Paul Smith",
"email": "[email protected]"
},
"license": "MIT",
"readmeFilename": "README.md",
"gitHead": "80f9b6fa07591917779b470a3a92c6fe3aadd9fe",
"devDependencies": {
"mocha": "^10.4.0",
"mongodb-memory-server": "^9.2.0",
"mongoose": ">=4",
"should": "^13.2.3"
},
"peerDependencies": {
"mongoose": ">=4"
}
}