-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.66 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
{
"name": "node-document",
"description": "Many document stores, Y U NO interface?",
"keywords": ["document", "odm", "object document mapper", "generic", "unified", "storage", "storages", "validator", "validators", "differ", "differs", "schema"],
"version": "0.1.0-pre9",
"homepage": "https://github.com/grimen/node-document",
"repository": {
"type": "git",
"url": "https://github.com/grimen/node-document.git"
},
"bugs": {
"web": "https://github.com/grimen/node-document/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/grimen/node-document/blob/MIT-LICENSE"
}
],
"author": "Jonas Grimfelt <[email protected]>",
"maintainers": [
{
"name": "Jonas Grimfelt",
"email": "[email protected]",
"web": "https://github.com/grimen"
}
],
"contributors": [],
"directories": {
"lib": "./lib"
},
"main": "./index.js",
"scripts": {
"test": "make test",
"test-ci": "make test-ci",
"test-remote": "make test-remote"
},
"bin": {},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"funargs": "latest",
"sugar": "latest",
"node-uuid": "latest",
"node-document-storage": "latest",
"node-document-validator": "latest",
"node-document-differ": "latest",
"node-document-storage-global": "latest",
"node-document-validator-schema": "latest",
"node-document-differ-jsondiff": "latest"
},
"devDependencies": {
"mocha": "latest",
"chai": "latest",
"cover": "latest",
"node-inspector": "latest",
"longjohn": "latest",
"colors": "latest",
"node-document-storage-fs": "latest",
"node-env-flag": "latest"
}
}