-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 960 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "jcriteria",
"version": "0.0.2",
"description": "A Hibernate-like-Criteria ORM API",
"main": "./lib",
"scripts": {
"test": "make test-all"
},
"keywords": [
"hibernate",
"orm",
"orm-api",
"criteria",
"criteria-api",
"api",
"jcriteria"
],
"author": {
"name": "Ian Mark Muninio",
"email": "[email protected]"
},
"license": [
{
"type": "MIT",
"url": "https://raw.github.com/ianmuninio/jcriteria/master/LICENSE"
}
],
"dependencies": {
"mongojs": "~0.13.1",
"jmodel": "~0.0.2",
"lodash": "~2.4.1"
},
"devDependencies": {
"mocha": "~1.21.3",
"chai": "~1.9.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/ianmuninio/jcriteria.git"
},
"bugs": {
"url": "https://github.com/ianmuninio/jcriteria/issues"
},
"files": [
"lib",
"README.md",
"LICENSE"
]
}