forked from dresende/node-orm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 1.86 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
{
"author": "Diogo Resende <[email protected]>",
"name": "orm",
"description": "NodeJS Object-relational mapping",
"keywords": [
"orm",
"odm",
"database",
"mysql",
"postgres",
"redshift",
"sqlite",
"mongodb"
],
"version": "8.0.0",
"license": "MIT",
"homepage": "http://dresende.github.io/node-orm2",
"repository": "http://github.com/dresende/node-orm2.git",
"contributors": [
{
"name": "Bramus Van Damme",
"email": "[email protected]"
},
{
"name": "Lorien Gamaroff",
"email": "[email protected]"
},
{
"name": "preslavrachev"
},
{
"name": "Chris Cowan",
"email": "[email protected]"
},
{
"name": "Paul Dixon",
"email": "[email protected]"
},
{
"name": "David Kosub"
},
{
"name": "Arek W",
"email": "[email protected]"
},
{
"name": "Joseph Gilley",
"email": "[email protected]"
},
{
"name": "Benjamin Pannell",
"email": "[email protected]"
}
],
"main": "./lib/ORM",
"scripts": {
"test": "c8 make test"
},
"engines": {
"node": ">= 6.0.0"
},
"analyse": false,
"dependencies": {
"async": "~3.2.3",
"bluebird": "3.5.1",
"enforce": "0.1.7",
"hat": "0.0.3",
"lodash": "^4.17.21",
"path-is-absolute": "1.0.1",
"sql-ddl-sync": "0.3.18",
"sql-query": "0.1.27"
},
"devDependencies": {
"c8": "~8.0.0",
"chalk": "~4.1.2",
"glob": "~10.3.0",
"mocha": "~9.2.2",
"mongodb": "~1.4.10",
"mysql": "~2.18.1",
"pg": "~8.7.1",
"semver": "^7.5.3",
"should": "~13.2.3",
"sinon": "~11.1.2",
"sqlite3": "~5.1.6"
},
"optionalDependencies": {},
"c8": {
"check-coverage": true,
"statements": 89.22,
"branches": 79.76,
"functions": 91.46,
"lines": 89.68
}
}