-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (51 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (51 loc) · 1.2 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
{
"name": "heaven-sqlite",
"version": "2.1.0",
"description": "Heaven.js's Data Mapper or Table Data Gateway for SQLite. CRUD API that parses and serializes your models.",
"keywords": [
"sqlite",
"database",
"orm",
"data-mapper",
"table-data-gateway"
],
"homepage": "https://github.com/moll/node-heaven-sqlite",
"bugs": "https://github.com/moll/node-heaven-sqlite/issues",
"author": {
"name": "Andri Möll",
"email": "andri@dot.ee",
"url": "https://m811.com"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/moll"
},
"repository": {
"type": "git",
"url": "git://github.com/moll/node-heaven-sqlite.git"
},
"license": "AGPL-3.0-or-later WITH GPL-3.0-linking-exception",
"main": "mapbox.js",
"scripts": {"test": "make test"},
"dependencies": {
"heaven": ">= 0.12 < 0.13",
"sqlate": ">= 2 < 3"
},
"peerDependencies": {
"sqlite3": ">= 4 < 6",
"better-sqlite3": ">= 6 < 13"
},
"peerDependenciesMeta": {
"sqlite3": {"optional": true},
"better-sqlite3": {"optional": true}
},
"devDependencies": {
"mocha": ">= 2 < 4",
"must": ">= 0.13.0 < 0.14",
"sqlite3": ">= 4 < 6",
"better-sqlite3": ">= 6 < 13"
},
"engines" : {
"node": ">= 4"
}
}