-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.28 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
{
"name": "mongo-schemer",
"version": "1.1.1",
"description": "Detailed schema validation error messages for Mongo",
"main": "index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"test": "./node_modules/jasmine/bin/jasmine.js spec/*.spec.js"
},
"engines": {
"node": "^8.0.0"
},
"author": "Allan Wintersieck",
"contributors": [
"Allan Wintersieck <allan@devetry.com> (https://devetry.com)",
"Brian Schiller <brian@devetry.com> (https://devetry.com)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devetry/mongo-schemer.git"
},
"bugs": {
"url": "https://github.com/devetry/mongo-schemer/issues"
},
"homepage": "https://github.com/devetry/mongo-schemer#readme",
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jasmine": "^2.9.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"jasmine-node": "^2.0.1",
"json-schema-ref-parser": "^4.1.0",
"lodash": "^4.17.15"
},
"dependencies": {
"ajv": "^6.0.0",
"ajv-bsontype": "^1.0.7",
"mongo-mock": "^3.3.0",
"mongodb": "^3.4.1"
}
}