forked from dodo360/mongoose-float
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 787 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 787 Bytes
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-float",
"version": "1.0.4",
"description": "This library can solve one well known problem with JavaScript Number arithmetic imprecise, when, for example, 3.3 * 3 becomes 9.899999999999999, ugly.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/Vnkitaev/mongoose-float.git"
},
"keywords": [
"mongoose",
"money",
"float",
"number",
"toFixed"
],
"author": {
"name": "Ivan Kitaev",
"email": "vnkitayev@gmail.com"
},
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"mocha": "6.0.2",
"should": "13.2.3",
"mongoose": ">=4.x <=5.x"
},
"peerDependencies": {
"mongoose": ">=4.x <=5.x"
}
}