-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 824 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 824 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
{
"name": "sqliteproxy",
"version": "0.9.1",
"description": "HTTP JSON Proxy for SQLite",
"main": "main.js",
"bin": {
"sqliteproxy": "./main.js"
},
"dependencies": {
"better-sqlite3": "7.0.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "4.17.1",
"flags": "0.1.3"
},
"keywords": [
"sqlite",
"sql",
"http",
"json"
],
"author": "assafmo",
"repository": {
"type": "git",
"url": "https://github.com/assafmo/SQLiteProxy.git"
},
"bugs": {
"url": "https://github.com/assafmo/SQLiteProxy/issues"
},
"license": "MIT",
"scripts": {
"build-docker": "VER=$(jq -r .version package.json); docker build -t assafmo/sqliteproxy:\"$VER\" .; docker tag assafmo/sqliteproxy:\"$VER\" assafmo/sqliteproxy:latest"
}
}