-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "node-document-validator",
"description": "Validator adapter interface for `node-document` ODM for Node.js.",
"keywords": ["document", "odm", "object document mapper", "generic", "unified", "validator", "schema", "adapter", "interface"],
"version": "0.1.0-pre4",
"homepage": "https://github.com/grimen/node-document-validator",
"repository": {
"type": "git",
"url": "https://github.com/grimen/node-document-validator.git"
},
"bugs": {
"web": "https://github.com/grimen/node-document-validator/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/grimen/node-document-validator/blob/MIT-LICENSE"
}
],
"author": "Jonas Grimfelt <grimen@gmail.com>",
"maintainers": [
{
"name": "Jonas Grimfelt",
"email": "grimen@gmail.com",
"web": "https://github.com/grimen"
}
],
"contributors": [],
"directories": {
"lib": "./lib"
},
"main": "./index.js",
"scripts": {
"test": "make test",
"test-ci": "make test-ci"
},
"bin": {},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"chai": "latest",
"longjohn": "latest",
"colors": "latest",
"funargs": "latest",
"sugar": "latest",
"json-diff": "latest"
},
"devDependencies": {
"mocha": "latest",
"cover": "latest",
"node-inspector": "latest"
}
}