forked from dresende/node-orm2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.69 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.69 KB
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
{
"author": "Diogo Resende <dresende@thinkdigital.pt>",
"name": "orm",
"description": "NodeJS Object-relational mapping",
"keywords": [
"orm",
"odm",
"database",
"mysql",
"postgres",
"redshift",
"sqlite",
"mongodb"
],
"version": "4.0.2",
"license": "MIT",
"homepage": "http://dresende.github.io/node-orm2",
"repository": "http://github.com/dresende/node-orm2.git",
"contributors": [
{
"name": "Bramus Van Damme",
"email": "bramus@bram.us"
},
{
"name": "Lorien Gamaroff",
"email": "lorien@gamaroff.org"
},
{
"name": "preslavrachev"
},
{
"name": "Chris Cowan",
"email": "me@chriscowan.us"
},
{
"name": "Paul Dixon",
"email": "paul.dixon@mintbridge.co.uk"
},
{
"name": "David Kosub"
},
{
"name": "Arek W",
"email": "arek01@gmail.com"
},
{
"name": "Joseph Gilley",
"email": "joe.gilley@gmail.com"
},
{
"name": "Benjamin Pannell",
"email": "admin@sierrasoftworks.com"
}
],
"main": "./lib/ORM",
"scripts": {
"test": "make test"
},
"engines": {
"node": "*"
},
"analyse": false,
"dependencies": {
"async": "2.5.0",
"bluebird": "^3.5.0",
"enforce": "0.1.7",
"hat": "0.0.3",
"lodash": "4.17.4",
"path-is-absolute": "1.0.1",
"sinon": "^3.2.1",
"sql-ddl-sync": "0.3.13",
"sql-query": "0.1.26"
},
"devDependencies": {
"chalk": "2.0.1",
"glob": "7.1.2",
"mocha": "3.4.2",
"mongodb": "1.4.10",
"mysql": "2.13.0",
"pg": "6.4.1",
"semver": "5.3.0",
"should": "11.2.1",
"sqlite3": "3.1.8"
},
"optionalDependencies": {}
}