-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 991 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 991 Bytes
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
{
"name": "sqlite-json",
"description": "Convert Sqlite3 tables to JSON",
"version": "1.3.0",
"homepage": "https://github.com/fitnr/sqlite-json",
"author": {
"name": "Neil Freeman",
"url": "http://fakeisthenewreal.org"
},
"bin": "bin/sqlite-json.js",
"repository": {
"type": "git",
"url": "git://github.com/fitnr/sqlite-json.git"
},
"bugs": {
"url": "https://github.com/fitnr/sqlite-json/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/fitnr/sqlite-json/blob/master/LICENSE"
}
],
"main": "index.js",
"scripts": {
"cover": "istanbul cover _mocha -- test.js",
"test": "mocha test.js"
},
"devDependencies": {
"mocha": "^10.1.0",
"rimraf": "^2.6.2",
"should": "^13.2.1"
},
"keywords": [
"sqlite sqlite3 json"
],
"dependencies": {
"better-sqlite3": "^9.0.0",
"commander": "^2.15.1",
"json-bigint": "^1.0.0",
"mkdirp": "^1.0.4"
}
}