This repository has been archived by the owner on Mar 11, 2019. It is now read-only.
forked from 1602/jugglingdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "promised-jugglingdb",
"description": "Dual API, promise based version of JugglingDB, the ORM for every database: redis, mysql, neo4j, mongodb, couchdb, postgres, sqlite",
"version": "0.2.15",
"author": "Anatoliy Chakkaev <rpm1602@gmail.com>",
"keywords": [
"promise",
"q",
"jugglingdb",
"promise based",
"rewrite",
"alternative"
],
"contributors": [
{
"name": "Anatoliy Chakkaev",
"email": "rpm1602@gmail.com"
},
{
"name": "Julien Guimont",
"email": "julien.guimont@gmail.com"
},
{
"name": "Joseph Junker",
"email": "joseph.jnk@gmail.com"
},
{
"name": "Henri Bergius",
"email": "henri.bergius@iki.fi"
},
{
"name": "redvulps",
"email": "fabopereira@gmail.com"
},
{
"name": "Felipe Sateler",
"email": "fsateler@gmail.com"
},
{
"name": "Amir M. Mahmoudi",
"email": "a@geeknux.com"
},
{
"name": "Justinas Stankevičius",
"email": "justinas@justinas.me"
},
{
"name": "Rick O'Toole",
"email": "patrick.n.otoole@gmail.com"
},
{
"name": "Nicholas Westlake",
"email": "nicholasredlin@gmail.com"
},
{
"name": "Paulo Cesar",
"email": "email@pocesar.e4ward.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pocesar/promised-jugglingdb"
},
"main": "index.js",
"scripts": {
"test": "jshint lib && mocha",
"prepublish": "make build"
},
"man": [
"./docs/man/jugglingdb.3",
"./docs/man/schema.3",
"./docs/man/model.3",
"./docs/man/hooks.3",
"./docs/man/validations.3",
"./docs/man/roadmap.3",
"./docs/man/changelog.3"
],
"engines": [
"node >= 0.6"
],
"devDependencies": {
"grunt": "0.4.x",
"grunt-mocha-istanbul": "*",
"expect.js": "*",
"mocha": "*",
"sinon":"*",
"jshint":"*",
"coveralls":"*",
"lodash":"*"
},
"dependencies": {
"inflection": "=1.2.7",
"bluebird":"*"
}
}