-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@momsfriendlydevco/mongoosy",
"version": "1.6.10",
"description": "Wrapper for Mongoose that adds some additional functionality",
"main": "src/mongoosy.js",
"repository": {
"type": "git",
"url": "git://github.com/MomsFriendlyDevCo/Mongoosy.git"
},
"scripts": {
"lint": "eslint .",
"test": "mocha",
"test:middleware": "MONGOOSY_SKIP_REBUILD=1 mocha -b test/middleware-*.js"
},
"keywords": [
"mongo",
"mongoose",
"database",
"nosql"
],
"author": "Matt Carter <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/Mongoosy/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/Mongoosy",
"dependencies": {
"@momsfriendlydevco/eventer": "^1.6.1",
"debug": "^4.3.4",
"event-stream": "^4.0.1",
"globby": "^11.0.2",
"lodash": "^4.17.21",
"mongoose": "^6.0.8",
"string-split-by": "^1.0.0"
},
"devDependencies": {
"@momsfriendlydevco/eslint-config": "^1.0.4",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"eslint": "^8.44.0",
"express": "^4.17.1",
"express-log-url": "^1.5.1",
"mocha": "^8.3.2",
"moment": "^2.29.4"
},
"eslintConfig": {
"extends": "@momsfriendlydevco",
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
}
}
}