-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 962 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 962 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
35
36
{
"name": "mongolayer",
"description": "MongoDB model layer with validation and hooks, similar to Mongoose but thinner.",
"author": "Owen Allen <owenallenaz@gmail.com>",
"version": "3.0.0",
"devDependencies": {
"@simpleview/assertlib": "^1.0.1",
"@simpleview/mochalib": "^1.0.1",
"mocha": "^6.1.4"
},
"dependencies": {
"@simpleview/promiselib": "^1.0.1",
"async": "^2.6.2",
"extend": "^3.0.2",
"jsvalidator": "^1.2.0",
"lodash": "^4.17.21",
"mongodb": "6.15.0",
"p-memoize": "^3.1.0",
"typecaster": "^0.0.2"
},
"main": "src/index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "mocha $(find testing/ -name *.test.js) -R spec --colors --check-leaks --globals Promise",
"docker": "bash ./dev/run",
"install:host": "npm install -f --package-lock false",
"publish": "bash ./dev/publish"
},
"repository": {
"type": "git",
"url": "https://github.com/simpleviewinc/mongolayer.git"
},
"license": "MIT"
}