-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
36 lines (36 loc) · 929 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
35
36
{
"name": "mongolayer",
"description": "MongoDB model layer with validation and hooks, similar to Mongoose but thinner.",
"author": "Owen Allen <[email protected]>",
"version": "2.5.0",
"devDependencies": {
"@simpleview/assertlib": "^1.0.1",
"@simpleview/mochalib": "^1.0.1",
"mocha": "^6.1.4",
"simple-domain": "*"
},
"dependencies": {
"@simpleview/promiselib": "^1.0.1",
"async": "^2.6.2",
"extend": "^3.0.2",
"jsvalidator": "^1.2.0",
"lodash": "^4.17.21",
"mongodb": "^3.7.4",
"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",
"publish": "bash ./dev/publish"
},
"repository": {
"type": "git",
"url": "https://github.com/simpleviewinc/mongolayer.git"
},
"license": "MIT"
}