-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 939 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
37
38
{
"name": "ova",
"version": "1.3.6",
"description": "Ova is an Object VAlidator that is light, extensible, and schema-based. Useful for Express req.body/params/query, or MongoDB document before inserting into collection if you don't want to use Mongoose.",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js",
"test-objectid": "mocha test/test_objectid.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umosys/ova.git"
},
"keywords": [
"ova",
"object",
"validate",
"validator",
"checker",
"express",
"request",
"schema",
"mongodb",
"mongo",
"mongoose"
],
"author": "Harry Lee",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/umosys/ova/issues"
},
"homepage": "https://github.com/umosys/ova#readme",
"devDependencies": {
"mocha": "^3.2.0",
"should": "^11.1.2",
"mongodb": "^2.2.20"
}
}