-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 929 Bytes
/
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
{
"name": "sqlite-to-json",
"description": "Dump data from sqlite databases to JSON files easily.",
"version": "0.1.3",
"homepage": "https://github.com/tkellen/node-sqlite-to-json",
"author": {
"name": "Tyler Kellen",
"url": "http://goingslowly.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/tkellen/node-sqlite-to-json.git"
},
"bugs": {
"url": "https://github.com/tkellen/node-sqlite-to-json/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tkellen/node-sqlite-to-json/blob/master/LICENSE"
}
],
"main": "index.js",
"engines": {
"node": ">= 0.8"
},
"scripts": {
"test": "mocha -R spec test.js"
},
"devDependencies": {
"chai": "^1.9.1",
"mocha": "^3.2.0",
"rimraf": "^2.2.8",
"sqlite3": "^3.1.8"
},
"keywords": [
"sqlite to json"
],
"dependencies": {
"mkdirp": "^0.5.1"
}
}