-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 865 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
{
"name": "sqlite-merge",
"version": "1.0.0",
"description": "Merge many sqlite dbs into one",
"main": "lib/index.js",
"repository": "[email protected]:nsainaney/sqlite-merge.git",
"author": "Narayan Sainaney <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "tsc -b",
"develop": "tsc -b -w",
"clean": "tsc -b --clean",
"start": "node lib/index.js",
"bundle": "yarn build && ./bundle.sh"
},
"bin": {
"sqlite-merge": "lib/index.js"
},
"dependencies": {
"@types/glob": "^7.2.0",
"arg": "^5.0.1",
"glob": "^8.0.3",
"glob-promise": "^4.2.2",
"pretty-error": "^4.0.0",
"promised-sqlite3": "^1.2.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@types/node": "^17.0.36",
"@types/sqlite3": "^3.1.8",
"typescript": "^4.7.2"
}
}