forked from scottwrobinson/camo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "marpat",
"version": "3.0.5",
"description": "A class-based ES6 ODM for Mongo-like databases.",
"author": {
"name": "Lui de la Parra",
"email": "lui@mutesymphony.com",
"url": "http://mutesymphony.com"
},
"scripts": {
"test": "snyk test && nyc _mocha --recursive ./test --timeout=30000 --exit",
"test-mongo-client": "nyc _mocha ./test/clients/mongodb.test.js --timeout=30000 --exit",
"test-nedb-client": "nyc _mocha ./test/clients/nedb.test.js --timeout=30000 --exit",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=html --reporter=text-lcov | coveralls",
"generate-docs": "mos",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"keywords": [
"es6",
"odm",
"mongodb",
"nedb",
"nosql",
"document",
"model",
"schema",
"database",
"data",
"datastore",
"query",
"db"
],
"homepage": "https://github.com/luidog/marpat",
"repository": {
"type": "git",
"url": "git@github.com:luidog/marpat.git"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"mos": {
"plugins": [
"execute"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"lodash": "^4.17.15"
},
"optionalDependencies": {
"mongodb": "^3.5.5",
"nedb": "^1.8.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"faker": "^5.1.0",
"jsdocs": "^1.0.0",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"mos": "^1.3.1",
"mos-plugin-execute": "^1.0.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"snyk": "^1.336.0"
},
"snyk": true
}