forked from fitnr/sqlite-json
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.05 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
{
"name": "sqlite-json-export",
"description": "Export SQLite3 tables to JSON",
"version": "0.1.0",
"homepage": "https://github.com/falcon-client/sqlite-json-export",
"author": {
"name": "Falcon Team",
"email": "[email protected]"
},
"bin": "bin/sqlite-json.js",
"repository": {
"type": "git",
"url": "git://github.com/falcon-client/sqlite-json-export.git"
},
"bugs": {
"url": "https://github.com/falcon-client/sqlite-json-export/issues"
},
"license": "MIT",
"main": "lib/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"devDependencies": {
"eslint": "^5.2.0",
"eslint-config-bliss": "^2.1.0",
"jest-cli": "^23.4.2",
"rimraf": "^2.6.2",
"sqlite3": "^4.0.2"
},
"keywords": [
"sqlite",
"sqlite3",
"extract",
"export",
"json"
],
"dependencies": {
"commander": "^2.16.0",
"mkdirp": "^0.5.1"
},
"peerDependencies": {
"sqlite3": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}