-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.07 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
{
"name": "object-schema",
"version": "0.1.19",
"description": "Object filter/schema for filtering, checking and validating javascript objects",
"keywords": [
"json",
"objects",
"mongodb",
"filter",
"schema"
],
"author": {
"name": "Dan Larsen"
},
"maintainers": [
{
"name": "Dan Larsen",
"email": "[email protected]",
"url": "http://github.com/morphar"
},
{
"name": "Elias G. Schneevoigt",
"email": "[email protected]",
"url": "https://github.com/eliasgs"
}
],
"repository": {
"type": "git",
"url": "http://github.com/nosco/object-schema.git"
},
"github": "http://github.com/nosco/object-schema",
"bugs": {
"url": "http://github.com/nosco/object-schema/issues"
},
"dependencies": {
"mongodb": ">=1.2.0",
"extend-string": ">=0.1.0",
"clone": ">=0.1.11"
},
"devDependencies": {
"mocha": ">=1.12.0",
"chai": ">=1.7.2"
},
"scripts": {
"test": "mocha --reporter spec"
},
"license": "MIT",
"main": "./index.js",
"engines": {
"node": ">=0.8.0"
}
}